重庆小潘seo博客

当前位置:首页 > 重庆网络营销 > 小潘杂谈 >

小潘杂谈

jQuery实现鼠标绑定事件图片放大功能

时间:2020-09-14 17:00:09 作者:重庆seo小潘 来源:
这次给大家带来jQuery实现鼠标绑定事件图片放大功能,jQuery实现鼠标绑定事件图片放大功能的注意事项有哪些,下面就是实战案例,一起来看一下。!doctype htmlhtmlheadmeta charset=utf-8titlejQuery图片变换/title/headstyle type=text/css .show{width:330p

这次给大家带来jQuery实现鼠标绑定事件图片放大功能,jQuery实现鼠标绑定事件图片放大功能的注意事项有哪些,下面就是实战案例,一起来看一下。<!doctype html><html><head><meta charset="utf-8"><title>jQuery图片变换</title></head><style type="text/css"> .show{width:330px; height:auto; margin:50px auto; background:#eee} .item{background:#fff; width:300px; height:auto; float:left; margin:15px;} p{ padding:15px; color:#ff6600} .big-photo img{ width:300px; height:300px; border:1px solid #e0e0e0} .des-small img{ width:30px; height:30px;border:1px solid #e0e0e0; } .des-small img:hover{ border:1px solid #ff6600} .clear{clear:both}</style><script alt="jQuery实现鼠标绑定事件图片放大功能" src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script><script type="text/javascript"> $(function() {/** 更换小图片 */$(".item a").hover(function(){changeImg($(this))});}); function changeImg(obj){if(obj.find("img").attr("alt")=="small"){var temp_big_src = obj.siblings('a').find('img[alt=big]').attr('src');var temp_big_url = obj.siblings('a[class=big-photo]').attr('href');var temp_small_src = obj.find('img').attr('src');var temp_small_url = obj.attr('href');obj.siblings('a').find('img[alt=big]').attr('src',temp_small_src);} }</script><body> <p>相信看了本文案例你已经掌握了方法,更多精彩请关注小潘博客其它相关文章!

推荐阅读:

js基础提升学习之操作DOM对象样式

js基础提升学习之基本数据类型以上就是jQuery实现鼠标绑定事件图片放大功能的详细内容,更多请关注小潘博客其它相关文章!