首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

webView播发gif图片

2012-09-16 
webView播放gif图片html?script? var state0? // intializes animation timer? function ini() {? ?

webView播放gif图片

<html>
?<script>
? var state=0;

? // intializes animation timer
? function ini() {
? ? setInterval("periodic()",500);
? }

? // called regularly to perform animation ?
? function periodic() {
? ? state = (state+1)%7;
? ? animState=state+1;

? ? // draw each state (except last one in which we make some pause)
? ? if (animState <= 5)
? ? ? ? ? ? document.getElementById("im").src="img/anim"+ animState +".jpg";
? }
?
?</script>
?<body onLoad="ini()">
? <h1>Letters &amp; Numbers</h1>
? <center>
? ?<img id="im" src="img/anim1.jpg"/>
? </center>

</body>
</html>

热点排行