码迷,mamicode.com
首页 > 其他好文 > 详细

地图上向外扩散的发射点

时间:2017-12-16 18:46:20      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:ase   div   key   doc   gpo   javascrip   2.4   order   bsp   

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8" />
    <title>Document</title>
    <style type="text/css">
        .circleBox{
            position: relative;
            width:100px;
            height:100px;
            top:100px;
            left:50%;
        }
        .circle{
            width:100px;
            height:100px;
            position: absolute;
        }
        .dot{
            position: absolute;
            top:0;
            right:0;
            bottom:0;
            left:0;
            margin:auto;
            width:10px;
            height:10px;
            background: #00cdec;
            border-radius:50%;
        }
        .circle:after{
            position: absolute;
            content:"";
            display:block;
            top:0;
            right:0;
            bottom:0;
            left:0;
            margin:auto;
            border:1px solid #00cdec;
            width:100%;
            height:100%;
            border-radius:50%;
            box-shadow: inset 0 0 5em rgba(0,205,236,.16);
            opacity: 0;
        }
        .circle1:after{
            -webkit-animation: mymove 4.5s ease-out 200ms infinite;
            -o-animation: mymove 4.5s ease-out 200ms infinite;
            animation: mymove 4.5s ease-out 200ms infinite;
        }
        .circle2:after{
            -webkit-animation: mymove 4.5s ease-out 1725ms infinite;
            -o-animation: mymove 4.5s ease-out 1725ms infinite;
            animation: mymove 4.5s ease-out 1725ms infinite;
        }
        .circle3:after{
            -webkit-animation: mymove 4.5s ease-out 3225ms infinite;
            -o-animation: mymove 4.5s ease-out 3225ms infinite;
            animation: mymove 4.5s ease-out 3225ms infinite;
        }
        @keyframes mymove {
            from {width:0px;height:0px;opacity: 1;}
            to {width:100px;height:100px;opacity: 0;}
        }
       
    
    </style>
 
</head>
<body>
<div class="circleBox">
    <div class="dot"></div>
    <div class="circle1 circle"></div>
    <div class="circle2 circle"></div>
    <div class="circle3 circle"></div>
</div>
 
 
<script
  integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
  crossorigin="anonymous"></script>
<script type="text/javascript">
 
</script>
</body>
</html>


 WEB前端学习交流群21 598399936

地图上向外扩散的发射点

标签:ase   div   key   doc   gpo   javascrip   2.4   order   bsp   

原文地址:http://www.cnblogs.com/luludehuhuan/p/8046893.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!