欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css动画animation:@keyframes关键帧,infinite循环

程序员文章站 2024-03-25 12:38:16
...

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循环

相关标签: css动画

上一篇: Html+CSS

下一篇: 抛物线运动