读书人

webView播发gif图片

发布时间: 2012-09-16 17:33:17 作者: rapoo

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 & Numbers</h1>
? <center>
? ?<img id="im" src="img/anim1.jpg"/>
? </center>

</body>
</html>

读书人网 >Web前端

热点推荐