css實現水波紋效果


1. HTML 代碼:

<div class="example">
<div class="dot"></div>
</div>

2. CSS樣式:設置animation屬性

.dot:before{
content:' ';
position: absolute;
z-index:2;
left:0;
top:0;
width:10px;
height:10px;
background-color: #ff4200;
border-radius: 50%;
}

.dot:after {
content:' ';
position: absolute;
z-index:1;
width:10px;
height:10px;
background-color: #ff4200;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0,0,0,.3) inset;
-webkit-animation-name:'ripple';/*動畫屬性名,也就是我們前面keyframes定義的動畫名*/
-webkit-animation-duration: 1s;/*動畫持續時間*/
-webkit-animation-timing-function: ease; /*動畫頻率,和transition-timing-function是一樣的*/
-webkit-animation-delay: 0s;/*動畫延遲時間*/
-webkit-animation-iteration-count: infinite;/*定義循環資料,infinite為無限次*/
-webkit-animation-direction: normal;/*定義動畫方式*/
}

3. 設置動畫方式,像波浪一樣,從小變大變無,所以我們要設置寬高從0 – 50px,透明度從有至無,這樣就能實現水波漣漪效果啦。

@keyframes ripple {
0% {
left:5px;
top:5px;
opcity:75;
width:0;
height:0;
}
100% {
left:-20px;
top:-20px;
opacity: 0;
width:50px;
height:50px;
}
}

效果:

 

參考鏈接:http://www.shejidaren.com/css3-ripple-dot.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM