鼠标悬停 图片自动放大功能 jquery

来源:互联网 发布:英语翻译发音软件 编辑:程序博客网 时间:2024/05/18 06:52
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script><style>ul,li{ list-style:none; float:left; }</style><script>$(function(){        $("#gallery li").mouseover(function(){var y = $(this).offset().top+50;var x = $(this).offset().left+50;var imgsrc = $(this).children().attr("src");var html = "<div id='pop' style='position:absolute; top:"+y+"px;left:"+x+"px;'> <img src='"+imgsrc+"' width='400' height='300'/></div>";$("body").append(html);});$("#gallery li").mouseout(function(){$("#pop").remove();});    })</script><ul id="gallery">  <li><img src="http://m2.quanjing.com/2m/sps009/4251r-4561.jpg" width="60" height="60"></li></ul>

0 0
原创粉丝点击