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

海的波浪

时间:2020-06-16 13:32:04      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:frame   ram   width   auto   after   ota   order   col   position   

           html中 (


    <div class="wave">


    </div>

)

 

 

 

 

css(

.wave{
    width: 200px;
    height: 200px;
    background-color: skyblue;
    margin: 0 auto;
   position: relative;
   overflow: hidden;
 /* // 两个不规则圆形(相对盒子进行定位,距离底部距离则为波浪高度) */
.wave::before,.wave::after{
content: "";
position: absolute;
left: 50%;
bottom: 15%;
width: 500%;
height: 500%;
border-radius: 45%;
background-color: #fff;
transform: translateX(-50%);
animation:rotate 10s linear infinite;
}
/*     
    // 其中一个不规则圆形调整一下样式,以便区分(或者调整animation的参数来区分) */
.wave::before{
    bottom: 8%;
    opacity: 0.6;
    border-radius: 50%;
}

  /* // 旋转动画 */
@keyframes rotate{
  from{
      transform: translateX(-50%) rotateZ(0deg);
  }
   to{
       transform: translateX(-50%)  rotateZ(360deg);
   }

}

 

 

海的波浪

标签:frame   ram   width   auto   after   ota   order   col   position   

原文地址:https://www.cnblogs.com/snidget888/p/13140122.html

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