欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery实现的鼠标响应缓冲动画效果示例

程序员文章站 2022-09-12 23:12:09
本文实例讲述了jquery实现的鼠标响应缓冲动画效果。分享给大家供大家参考,具体如下: 先来看看运行效果: 具体代码如下:

本文实例讲述了jquery实现的鼠标响应缓冲动画效果。分享给大家供大家参考,具体如下:

先来看看运行效果:

jQuery实现的鼠标响应缓冲动画效果示例

具体代码如下:

<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>js动画-缓冲动画</title>
<script src="http://libs.baidu.com/jquery/1.10.2/jquery.js"></script>
<style>
* {
  margin: 0;
  padding: 0;
  font-family:"微软雅黑"
}
#box{
  height:100px;
  width:100px;
  background-color:#0099cc;
  margin-top:200px;
  position:relative;
  /*速速、缓冲变化*/
  left:-100px;
}
span{
  display:block;
  color:blue;
  width:25px;
  height:100px;
  background-color:#ffff99;
  position:absolute;
  left:100px;
}
</style>
</head>
<body>
  <div id="box">
    <span>移动</span>
  </div>
<script>
window.onload=function(){
  var div1=document.getelementbyid("box");
  div1.onmouseover=function(){
    startmove(0);
  }
  div1.onmouseout=function(){
    startmove(-100);
  }
}
var timer=null;
function startmove(itarget){
    clearinterval(timer);
    var div1=document.getelementbyid("box");
    timer=setinterval(function(){
      var speed=(itarget-div1.offsetleft)/20;
      speed=speed>0?math.ceil(speed):math.floor(speed);
      if(div1.offsetleft==itarget){
        clearinterval(timer);
      }else{
        div1.style.left=div1.offsetleft+speed+"px";
      }
    },30)
}
</script>
</body>
</html>

更多关于jquery相关内容感兴趣的读者可查看本站专题:《jquery常用插件及用法总结》、《jquery扩展技巧总结》、《jquery拖拽特效与技巧总结》、《jquery常见经典特效汇总》、《jquery动画与特效用法总结》及《jquery选择器用法总结

希望本文所述对大家jquery程序设计有所帮助。