css实现地图标注图标悬浮放大效果代码
代码语言:html
所属分类:悬停
代码描述:css实现地图标注图标悬浮放大效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/material-icons.min.css">
<style>
body {
align-items: center;
background-color: #9bdefb;
display: flex;
height: 100vh;
justify-content: center;
width: 100vw;
}
body * {
transition: all 120ms ease-out;
}
body div {
margin-right: 8px;
}
body div:last-of-type {
margin-right: 0px;
}
body .sr-only {
position: absolute;
left: -1px;
top: -1px;
width: 1px;
height: 1px;
overflow: hidden;
}
.pin-container {
height: 58px;
position: relative;
width: 48px;
}
.pin:focus {outline:none;}
.pin {
background-color: white;
border-color: white;
border-style: solid;
border-radius: 100% 100% 0 100%;
border-width: 1px;
box-shadow: 8px 8px 16px rgba(42, 44, 46, 0.08);
color: white;
position: absolute;
left: -24px;
top: 10px;
transform: rotate(45deg);
transform-origin: right bottom;
width: 48px;
height: 48px;
}
.pin__daycare {
background-color: #f083e3;
}
.pin__daycare-selected,
.pin__daycare:hover,
.pin__daycare:focus {
border-color: #f083e3;
color: #f083e3;
}
.pin__p.........完整代码请登录后点击上方下载按钮下载查看
网友评论0