码迷,mamicode.com
首页 > Web开发 > 详细

CSS3发光字动画

时间:2014-11-10 15:17:30      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   ar   sp   div   on   bs   html   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
*{ margin:0; padding:0}
img{ width:200px; height:200px; border:2px solid #000}

.back h5 {
font-size: 4em;
color: #f2050b;
text-align: center;
animation: warning 1.5s infinite ease-in;
}
@keyframes warning {
from {
text-shadow: 0px 0px 4px #000000;
}
50% {
text-shadow: 0 0 40px #000000;
}
to {
text-shadow: 0 0 4px #000000;
}
}


</style>
</head>

<body id="quiz">
<div class="back">
 <h5>我叫张小蕾</h5>
</div>

 

</body>
</html>

CSS3发光字动画

标签:style   io   color   ar   sp   div   on   bs   html   

原文地址:http://www.cnblogs.com/xiaoleidiv/p/4087003.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!