首頁 > web前端 > css教學 > 主體

css動畫和照片清晰度動畫的實作方法介紹

高洛峰
發布: 2017-03-07 14:26:38
原創
1827 人瀏覽過

實例如下:

css動畫和照片清晰度動畫的實作方法介紹

#原始碼:

<!DOCTYPE html>
<html>
<head>
<title>donghua</title>
<meta charset="utf-8">
<style type="text/css">
.beijing{   
border: 1px solid black;   
width: 100%;   
height: 800px;   
background: black;   
}   
.a1 img{   
width: 100px;   
height: 100px;   
-webkit-filter: blur(2px);   
}   
.qq{   
position: absolute;   
left: 500px;   
top: 150px;   
}   
.qq img:hover{   
animation-name: one;   
animation-duration: 3s;   
animation-fill-mode: forwards;   
}   
@keyframes one{   
0%{width: 200px;height: 200px;-webkit-filter:blur(4px);}   
25%{width: 400px;height: 400px;-webkit-filter:blur(3px);}   
80%{width: 600px;height: 600px;-webkit-filter:blur(2px);}   
100%{width: 800px;height: 800px;-webkit-filter:blur(0px);}   
}   
.ww{   
position: absolute;   
left: 540px;   
top: 180px;   
}   
.ww img:hover{   
animation-name: one;   
animation-duration: 5s;   
animation-fill-mode: forwards;   
}   
.ss{   
position: absolute;   
left: 550px;   
top: 240px;   
}   
.ss img:hover{   
animation-name: one;   
animation-duration: 5s;   
animation-fill-mode: forwards;   
}   
.tt{   
position: absolute;   
left: 560px;   
top: 260px;   
}   
.tt img:hover{   
animation-name: one;   
animation-duration: 5s;   
animation-fill-mode: forwards;   
}   
.oo{   
position: absolute;   
left: 590px;   
top: 300px;   
}   
.oo img:hover{   
animation-name: one;   
animation-duration: 5s;   
animation-fill-mode: forwards;   
}   
</style>
</head>
<body>
<p class="beijing">
<p class="a1 qq"><img  src="43a7d933c895d143b233160576f082025aaf074a.jpg" alt="css動畫和照片清晰度動畫的實作方法介紹" ></p>
<p class="a1 ww"><img  src="03087bf40ad162d9ec74553b14dfa9ec8a13cd7a.jpg" alt="css動畫和照片清晰度動畫的實作方法介紹" ></p>
<p class="a1 ss"><img  src="b151f8198618367ac7d2a1e92b738bd4b31ce5af.jpg" alt="css動畫和照片清晰度動畫的實作方法介紹" ></p>
<p class="a1 tt"><img  src="023b5bb5c9ea15cec72cb6d6b2003af33b87b22b.jpg" alt="css動畫和照片清晰度動畫的實作方法介紹" ></p>
<p class="a1 oo"><img  src="c2cec3fdfc03924578c6cfe18394a4c27c1e25e8.jpg" alt="css動畫和照片清晰度動畫的實作方法介紹" ></p>
</p>
</body>
</html>
登入後複製

以上這篇css動畫+照片清晰度動畫的實現方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持PHP中文網。

更多css動畫和照片清晰度動畫的實作方法介紹相關文章請關注PHP中文網!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!