css动画的实验
oeasy007,制作简单的css动画
在这里插入代码片
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
@keyframes myfirst {
from {opacity: 0.5}
to {opacity: 1}
}
img{
animation: myfirst 5s infinite;
}
</style>
</head>
<body>
<img src ="imgs/redstars.jpg" width="400px" height="300px"/>
<h1>七里香</h1>
<p>窗外的麻雀,在电线杆上多嘴</p>
<p>你说这一句,很有夏天的感觉</p>
<p>手中的铅笔,在纸上来来回回</p >
<p > </p >
</body >
</html>
效果是渐显动画。
查看网址:https://liujiajiahahaha.github.io/mynewshare/001basic/index.html
myfirst是自己定义的动画关键帧名字,
img{
animation: myfirst 5s infinite;
}
在此处的myfirst表示使用这个动画,5s是过渡时间,infinite循环