CSS3实现文字渐隐效果

来源:互联网 发布:张大奕有几个淘宝店 编辑:程序博客网 时间:2024/06/06 00:38
<!DOCTYPE html>
<html>
<head>
<style>

div{
-webkit-animation: twinkling 1s infinite ease-in-out
}

.animated{
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
@-webkit-keyframes twinkling{
0%{
opacity: 0.5;
}
100%{
opacity: 1;
}
}
@keyframes twinkling{
0%{
opacity: 0.5;
}
100%{
opacity: 1;
}
}
</style>
</head>
<body>



<div>
   此处是闪烁的内容
</div>

</body>
</html>

0 0
原创粉丝点击