先上效果圖:
教程
本動畫需要用到的主要屬性:animation, transition 和 Keyframes 屬性。
Step 1:HTML 代碼:
Step 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;/*定義動畫方式*/
}
設置動畫方式,像波浪一樣,從小變大變無,所以我們要設置寬高從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;
}
}
效果完成了,此案例比較適合圖像定位標識用,當然還可以有更好的方案去代替,完善這個樣式與動畫效果。