手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jquery果冻抖动效果实现方法
jquery果冻抖动效果实现方法
摘要:本文实例讲述了jquery果冻抖动效果实现方法。分享给大家供大家参考。具体实现方法如下:复制代码代码如下:$(function(){$("d...

本文实例讲述了jquery果冻抖动效果实现方法。分享给大家供大家参考。

具体实现方法如下:

复制代码 代码如下:

<html>

<head>

<script type="text/javascript" src="jquery-1.8.2.min.js"></script>

<script type="text/javascript">

$(function(){

$("div").mouseover(function(){

$(this).animate({"width":"320","height":"100"},100);

$(this).animate({"width":"310","height":"90"},100);

}).mouseout(function(){

$(this).animate({"width":"300","height":"80"},100);

});

});

</script>

<style type="text/css">

div{width:300px;height:80px;border-radius:8px;background:green;margin-top:10px;}

</style>

</head>

<body>

<div></div>

<div></div>

<div></div>

<div></div>

</body>

</html>

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

【jquery果冻抖动效果实现方法】相关文章:

jquery滚动特效集锦

jquery实现弹出层效果实例

jquery读取xml文件实现省市县三级联动的方法

jQuery聚合函数实例

jQuery预加载图片常用方法

jQuery判断一个元素是否可见的方法

JavaScript实现鼠标拖动效果的方法

JQuery中上下文选择器实现方法

jQuery实现不断闪烁文字的方法

jquery预加载图片的方法

精品推荐
分类导航