JavaScript之图片的放大和还原

发布时间:2020-05-14 02:28:33 作者:爱笑嘚蛋蛋
来源:网络 阅读:498

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

$("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);
});


推荐阅读:
  1. mysql笔记之常用备份还原
  2. 安卓 App双击放大和缩小图片功能

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

图片放大 avascript ava

上一篇:进军Android啦

下一篇:shell脚本初体验

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》