微信html淡入淡出代码
应该是支援jQuery的吧?
如果支援jQuery
那jQuery也可能更方便
官方: /fadein/
w3c: /jquery/effect_fadein.asp
@keyframes show { 0% {opacity: 0} //开始时透明度为0 100% {opacity: 1} //结束时透明度为1}@-moz-keyframes show { 0% {opacity: 0} 100% {opacity: 1}}@-webkit-keyframes show { 0% {opacity: 0} 100% {opacity: 1}}#p1_txt1{ background: url("../image/p1_txt1.png") no-repeat; background-size:100% 100%; top: 80%; left: 10%; width: 60%; height: 5%; animation: show 2s linear 5s forwards; //设置动画的播放时间,速度,延迟时间 -moz-animation: show 2s linear 5s forwards; -webkit-animation: show 2s linear 5s forwards;}