jquery实现图片列表鼠标移入微动_jquery

本效果使用jQuery和CSS实现了图片列表,当鼠标移入时图片向左微动,移出则复原。

其中的jQuery事件使用mouseenter 和 mouseleave ,事件绑定方法使用新推荐的on方法。

代码如下:

<!DOCTYPE html>
<html>
<head><meta name="viewport" content="width=device-width, initial-scale=1" />
 <title>jQuery实现图片列表鼠标移入微动_何问起</title><base target="_blank" />
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <style type="text/css">
  body, div, li, p, img, a {
   margin: 0;
   padding: 0;
  }
  .hovertreecontainer {
   width: 370px;
   margin: 50px auto;
  }
   .hovertreecontainer a {
    text-decoration: none;
   }
  .hovertree-item-box {
   height: 120px;
   width: 185px;
   position: relative;
   padding: 10px;
   box-sizing: border-box;
   float: left;
  }
   .hovertree-item-box .title {
    width: 80px;
    height: 100%;
    color: #4998a1;
    font-size: 14px;
   }
   .hovertree-item-box.odd {
    border-bottom: 1px solid #CCC;
    border-right: 1px solid #CCC;
   }
   .hovertree-item-box.even {
    border-bottom: 1px solid #CCC;
   }

   .hovertree-item-box.nobottom {
    border-bottom: none;
   }
   .hovertree-item-box .hovertree-img-box {
    width: 80px;
    height: 80px;
    overflow: hidden;
    position: absolute;
    right: 10px;
    bottom: 5px;
   }
  .hovertree-img-box img {
   width: 100%;
   height: 100%;
  }
  .hovertreecontainer:after {
   content: "";
   display: block;
   clear: both;
  }
 </style>
</head>
<body>
 <div class="hovertreecontainer"><h2>jQuery实现图片列表鼠标移入微动</h2>
  <a href="http://hovertree.com/texiao/css/20/">
   <div class="hovertree-item-box odd">
    <div class="title">春节对联</div>
    <div class="hovertree-img-box"><img src=https://yunqi-tech.oss-cn-hangzhou.aliyuncs.com/o9qashmi.gif></div>
   </div>
  </a>
  <a href="http://hovertree.com/hvtart/bjae/a6w6e2qg.htm">
   <div class="hovertree-item-box even">
    <div class="title">下雨天</div>
    <div class="hovertree-img-box"><img src=https://yunqi-tech.oss-cn-hangzhou.aliyuncs.com/f748s0ko.jpg></div>
   </div>
  </a>
  <a href="http://hovertree.com/h/bjae/0st5ww13.htm">
   <div class="hovertree-item-box odd">
    <div class="title">磨砂玻璃</div>
    <div class="hovertree-img-box"><img src=https://yunqi-tech.oss-cn-hangzhou.aliyuncs.com/agagq0or.jpg></div>
   </div>
  </a>
  <a href="http://hovertree.com/menu/texiao/">
   <div class="hovertree-item-box even">
    <div class="title">网页特效</div>
    <div class="hovertree-img-box"><img src=https://yunqi-tech.oss-cn-hangzhou.aliyuncs.com/r51a22uy.gif></div>
   </div>
  </a>
  <a href="http://hovertree.com/h/bjaf/hwqtjwjs.htm">
   <div class="hovertree-item-box odd nobottom">
    <div class="title">何问起统计文件数</div>
    <div class="hovertree-img-box"><img src=https://yunqi-tech.oss-cn-hangzhou.aliyuncs.com/iofopnro.png></div>
   </div>
  </a>
  <a href="http://hovertree.com/h/bjaf/hovertreeimg.htm">
   <div class="hovertree-item-box even nobottom">
    <div class="title">HovertreeImg</div>
    <div class="hovertree-img-box"><img src=https://yunqi-tech.oss-cn-hangzhou.aliyuncs.com/p3t2ldyr.png></div>
   </div>
  </a>
 <div><a href="http://hovertree.com/h/bjaf/4mv4wgmj.htm">原文</a> <a href="http://hovertree.com">首页</a> <a href="http://hovertree.com/menu/texiao/">特效</a></div>
 </div>
 <script type="text/javascript" src="http://down.hovertree.com/jquery/jquery-1.11.3.min.js"></script>
 <script type="text/javascript">
  $(function () {
   $('.hovertreecontainer .hover'+'tree-item-box').on('mouseenter', function (ev) {
    var oImgBox = $(this).find('.hovertree-img-box');

    $(oImgBox).stop(true).animate({
     right: '20px'
    }, "normal");
   }).on('mouseleave', function (ev) {
    var oImgBox = $(this).find('.hovertree-img-box');
    $(oImgBox).stop(true).animate({
     right: '10px'
    }, "normal");
   });
  });
 </script>
</body>
</html>

以上就是本文的全部内容,希望对大家有所帮助,同时也希望多多支持!

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索jquery
, 图片列表
微动
鼠标微动、鼠标换微动、鼠标微动怎么换、鼠标微动是什么、鼠标换微动教程,以便于您获取更多的相关知识。

时间: 2024-10-04 10:36:36

jquery实现图片列表鼠标移入微动_jquery的相关文章

jquery图片列表鼠标移入微动实现代码

本效果使用jQuery和CSS实现了图片列表,当鼠标移入时图片向左微动,移出则复原. 其中的jQuery事件使用mouseenter 和 mouseleave ,事件绑定方法使用新推荐的on方法. 代码如下: <!DOCTYPE html> <html> <head><meta name="viewport" content="width=device-width, initial-scale=1" /> <ti

jQuery实现仿QQ空间装扮预览图片的鼠标提示效果代码_jquery

本文实例讲述了jQuery实现仿QQ空间装扮预览图片的鼠标提示效果代码.分享给大家供大家参考,具体如下: 这是一款仿腾讯网QQ空间装扮预览图片的鼠标提示效果,感应鼠标显示图片的介绍信息,当你把鼠标移到图片上的时候,图片的背景会有所变化,并会显示该图片的对应文字内容,是QQ空间使用过的效果. 运行效果截图如下: 在线演示地址如下: http://demo.jb51.net/js/2015/jquery-f-qq-zone-pic-view-codes/ 具体代码如下: <!DOCTYPE html

jQuery插件图片列表切换,点击小图列表大图显示

效果可以直接使用,但是尚未封装,等封装后方便插件下载.    代码如下 复制代码 <html><head>   <title>腾讯娱乐图片预览的网站特效,已经进行了解析和优化,方便了解其html css原理.</title>   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">         <style type

原生js和jquery实现图片轮播淡入淡出效果_jquery

图片轮播有很多种方式,这里采用其中的 淡入淡出形式 js原生和jQuery都可以实现,jquery因为封装了很多用法,所以用起来就简单许多,转换成js使用,其实也就是用js原生模拟出这些用法. 但不管怎样,构造一个最基本的表现层是必须的 简单的图片轮播一般由几个部分构成. 对于淡入淡出式 1.首先是个外围部分(其实也就是最外边的整体wrapper) 2.接着就是你设置图片轮播的地方(也就是一个banner吧) 3.然后是一个图片组(可以用新的div 也可以直接使用 ul-->li形式) 4.然后

JQuery控制图片由中心点逐渐放大效果_jquery

有的时候我们需要做一个当鼠标放置在图片上的时候,希望图片逐渐变大,即图片的width和height逐渐变大,但是此时,其left值与top值没有改变,故看似不是从中心点进行缩放的.如下图: 从中心点进行缩放 实现代码如下: <meta charset="utf-8"> <style type="text/css"> #div1{ width:600px; height:400px; margin:50px auto; position:rel

jquery实现图片水平滚动效果代码分享_jquery

本文实例讲述了jquery实现图片水平滚动效果,分享给大家供大家参考.具体如下: 运行效果图:-------------------查看效果------------------- 小提示:浏览器中如果不能正常运行,可以尝试切换浏览模式. 为大家分享的jquery实现图片水平滚动效果代码如下 <HEAD> <META content="text/html; charset=gb2312" http-equiv="Content-Type"> &

jquery animate图片模向滑动示例代码_jquery

这个对象中每个属性都表示一个可以变化的样式属性(如"height"."top"或"opacity"). 注意:所有指定的属性必须用骆驼形式,比如用marginLeft代替margin-left. 而每个属性的值表示这个样式属性到多少时动画结束.如果是一个数值,样式属性就会从当前的值渐变到指定的值.如果使用的是"hide"."show"或"toggle"这样的字符串值,则会为该属性调用默认

jQuery简单实现列表隐藏和显示效果示例_jquery

本文实例讲述了jQuery简单实现列表隐藏和显示效果.分享给大家供大家参考,具体如下: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>隐藏和显示</title> <style> *{ padding: 0; margin: 0;} li{ list-style-type: none;} bo

利用jQuery对无序列表排序的简单方法_jquery

利用jQuery对无序列表排序的原理是:获取到无序列表中的所有列表项,并转成数组形式,使用JavaScript函数对其进行排序后再次输出.其中使用到的jQuery函数有ready().get().text().each().append()和JavaScript函数sort(). 1.jQuery函数介绍 (1)jQuery函数get()--获取匹配元素集合 该函数取得所有匹配元素的一种向后兼容的方式(不同于jQuery对象,实际上是元素数组).其语法形式如下: object.get() 注:如