zoukankan      html  css  js  c++  java
  • 让DIV实现抖动效果!

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>JavaScript层抖动效果</title>
    <style type="text/css">
    #body{text-align:center;}
    #test{width:200px;position:absolute;margin:10px auto;height:100px;border:2px dotted red;text-align:center}
    </style>
    </head>
    <body>
    <div style="margin:10px 200px">
        <div>
            <input type="button" value="~点这里让我抖抖吧~" onclick="nn.start()" /></div>
        <div>
            <input type="button" value="晃晕了,我不抖了!" onclick="nn.stop()" /></div>
        <div id="test">
            <br>
            </div>
    </div>
    <p> </p>
    <p> </p>
    </body>
    </html>
    <script type="text/javascript">
     var m=document.getElementById("test");
    function SKclass (obj,Rate,speed) {
         var oL=obj.offsetLeft;
         var oT=obj.offsetTop;
         this.stop=null;
         this.oTime=null;
         var om=this;
         this.start=function(){
                 if(parseInt(obj.style.left)==oL-2){
                    obj.style.top=oT+2+"px";
                    setTimeout(function(){obj.style.left=oL+2+"px"},Rate)
                 }
                 else{
                    obj.style.top=oT-2+"px";
                    setTimeout(function(){obj.style.left=oL-2+"px"},Rate)
                }
            this.oTime=setTimeout(function(){om.start()},speed);
         }
         this.stop=function(){
           clearTimeout(this.oTime);
         
         }
    }
    var nn=new SKclass(m,20,70);
    </script>
    </body>
    </html>
  • 相关阅读:
    面向对象基础之类与对象
    常用模块(一)
    re模块与正则表达式
    初识模块
    函数进阶篇
    Spring + Mybatis 读写分离
    java包的所有类生成class
    Oralce数据库的优化
    Java 搜索引擎
    JAVA分布式架构的演进
  • 原文地址:https://www.cnblogs.com/smallerpig/p/3646203.html
Copyright © 2011-2022 走看看