首页 > 其他 > 详细

图片的放大和还原

时间:2017-10-27 17:36:25      阅读:250      评论:0      收藏:0      [点我收藏+]

一个简单的功能,鼠标放在图片上在该图片的上层显示放大后的图片,浮出的效果

$("ul.thumb li").hover(function() {
    $(this).css({‘z-index‘ : ‘10‘});
    var _width = $(this).find("img").width() * 1.5,
    _height = $(this).find("img").height() * 1.5,
    _top = _height / 2,
    _left = _width / 2;
    $(this).find(‘img‘).addClass("hover").stop()
        .animate({
            marginTop: ‘-‘ + _top + ‘px‘, 
            marginLeft: ‘-‘ + _left +‘px‘, 
            top: ‘50%‘, 
            left: ‘50%‘, 
            width: _width + ‘px‘, 
            height: _height + ‘px‘,
            padding:‘10px‘
        }, 200);
    } , function() {
        $(this).css({‘z-index‘ : ‘0‘});
            $(this).find(‘img‘).removeClass("hover").stop()
		.animate({
                    marginTop: ‘0‘, 
		    marginLeft: ‘0‘,
		    top: ‘0‘, 
		    left: ‘0‘, 
		    width: ‘100%‘, 
                    height: ‘165px‘, 
                    padding: ‘5px‘
	        }, 400);
});


本文出自 “爱笑嘚蛋蛋” 博客,请务必保留此出处http://dd118.blog.51cto.com/8638176/1976800

图片的放大和还原

原文:http://dd118.blog.51cto.com/8638176/1976800

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!