html発光フォントとフェードアウト効果
810 ワード
css
.Flex-color-Special
{
text-shadow: 0 0 10px #fff,
0 0 20px #fff,
0 0 30px #fff,
0 0 40px #00c0ef,
0 0 70px #00c0ef,
0 0 80px #00c0ef,
0 0 100px #00c0ef,
0 0 150px #00c0ef;
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0; /* 0*/
}
50% {
opacity: 0.5; /* 0*/
}
100% {
opacity: 1; /* 1*/
}
}
.Flex-fadeIn
{-webkit-animation-name: fadeIn; /* */
-webkit-animation-duration: 8s; /* */
-webkit-animation-iteration-count: infinite; /* infinite */
-webkit-animation-delay: 0s; /* */}
html