1. 程式人生 > >CSS3實現文字漸隱效果

CSS3實現文字漸隱效果

<!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>