Heim  >  Artikel  >  Web-Frontend  >  Einführung in die Implementierungsmethoden von CSS-Animationen und Fotodefinitionsanimationen

Einführung in die Implementierungsmethoden von CSS-Animationen und Fotodefinitionsanimationen

高洛峰
高洛峰Original
2017-03-07 14:26:381848Durchsuche

Das Beispiel lautet wie folgt:

Einführung in die Implementierungsmethoden von CSS-Animationen und Fotodefinitionsanimationen

Quellcode:

<!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="Einführung in die Implementierungsmethoden von CSS-Animationen und Fotodefinitionsanimationen" ></p>
<p class="a1 ww"><img  src="03087bf40ad162d9ec74553b14dfa9ec8a13cd7a.jpg" alt="Einführung in die Implementierungsmethoden von CSS-Animationen und Fotodefinitionsanimationen" ></p>
<p class="a1 ss"><img  src="b151f8198618367ac7d2a1e92b738bd4b31ce5af.jpg" alt="Einführung in die Implementierungsmethoden von CSS-Animationen und Fotodefinitionsanimationen" ></p>
<p class="a1 tt"><img  src="023b5bb5c9ea15cec72cb6d6b2003af33b87b22b.jpg" alt="Einführung in die Implementierungsmethoden von CSS-Animationen und Fotodefinitionsanimationen" ></p>
<p class="a1 oo"><img  src="c2cec3fdfc03924578c6cfe18394a4c27c1e25e8.jpg" alt="Einführung in die Implementierungsmethoden von CSS-Animationen und Fotodefinitionsanimationen" ></p>
</p>
</body>
</html>

Die obige Implementierungsmethode der CSS-Animation + Fotodefinitionsanimation ist der gesamte vom Herausgeber geteilte Inhalt. Ich hoffe, dass er Ihnen eine Referenz geben kann, und ich hoffe, dass Sie die chinesische PHP-Website unterstützen.

Weitere Einführungen in die Implementierungsmethoden von CSS-Animationen und Fotodefinitionsanimationen finden Sie auf der chinesischen PHP-Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn