当前位置: 编程技术>WEB前端
JQuery实现鼠标移动到图片上显示边框效果
来源: 互联网 发布时间:2014-08-25
本文导语: 代码如下: 以下为程序代码: $(function() { $(".v").mouseover(function() { var x = $(""); x.appendTo($('body')); x.css({ width : $(this).width() - 6, height : $(this).height() - 6, left : $(this).offset().left, top : $(this).offset().top }); $($.browser.msie ? this : x).mouseout(func...
代码如下:
以下为程序代码:
$(function() {
$(".v").mouseover(function() {
var x = $("");
x.appendTo($('body'));
x.css({
width : $(this).width() - 6,
height : $(this).height() - 6,
left : $(this).offset().left,
top : $(this).offset().top
});
$($.browser.msie ? this : x).mouseout(function(){
x.remove();
});
});
});
.vs {z-index:1000;position:absolute;border:3px solid red;}
点击查看演示:http://biyuan.tk/u/upload/201311131123292656.html