- 相關(guān)推薦
CSS3水波漣漪動(dòng)畫定位樣式如何制作
寶劍鋒從磨礪出,梅花香自苦寒來(lái)。以下是小編為大家搜索整理的CSS3水波漣漪動(dòng)畫定位樣式如何制作,希望能給大家?guī)?lái)幫助!更多精彩內(nèi)容請(qǐng)及時(shí)關(guān)注我們應(yīng)屆畢業(yè)生考試網(wǎng)!
先上效果圖:
教程
本動(dòng)畫需要用到的主要屬性:animation, transition 和 Keyframes 屬性。
Step 1:HTML 代碼:
Step 2: CSS樣式:設(shè)置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';/*動(dòng)畫屬性名,也就是我們前面keyframes定義的動(dòng)畫名*/
-webkit-animation-duration: 1s;/*動(dòng)畫持續(xù)時(shí)間*/
-webkit-animation-timing-function: ease; /*動(dòng)畫頻率,和transition-timing-function是一樣的*/
-webkit-animation-delay: 0s;/*動(dòng)畫延遲時(shí)間*/
-webkit-animation-iteration-count: infinite;/*定義循環(huán)資料,infinite為無(wú)限次*/
-webkit-animation-direction: normal;/*定義動(dòng)畫方式*/
}
設(shè)置動(dòng)畫方式,像波浪一樣,從小變大變無(wú),所以我們要設(shè)置寬高從0 – 50px,透明度從有至無(wú),這樣就能實(shí)現(xiàn)水波漣漪效果啦。
@keyframes ripple {
0% {
left:5px;
top:5px;
opcity:75;
width:0;
height:0;
}
100% {
left:-20px;
top:-20px;
opacity: 0;
width:50px;
height:50px;
}
}
【CSS3水波漣漪動(dòng)畫定位樣式如何制作】相關(guān)文章:
Flash常見(jiàn)動(dòng)畫火苗動(dòng)畫的制作分析12-03
Flash常見(jiàn)動(dòng)畫制作火苗03-01
Fireworks制作扇子展開(kāi)動(dòng)畫的方法03-02
Photoshop制作魔術(shù)師GIF動(dòng)畫03-06
如何制作表格12-05
如何設(shè)置2003ppt動(dòng)畫效果03-19
2016托福閱讀如何精準(zhǔn)定位12-01
Excel如何制作表頭03-24