`
wang_peng1
  • 浏览: 3905377 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

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>

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics