fastadmin点击图片放大

PHP / 339人浏览 / 0人评论
$('body').on('click', '[data-tips-image]', function () {
        var img = new Image();
        var imgWidth = this.getAttribute('data-width') || '480px';
        img.onload = function () {
            var $content = $(img).appendTo('body').css({background: '#fff', width: imgWidth, height: 'auto'});
            Layer.open({
                type: 1, area: imgWidth, title: false, closeBtn: 1,
                skin: 'layui-layer-nobg', shadeClose: true, content: $content,
                end: function () {
                    $(img).remove();
                },
                success: function () {
 
                }
            });
        };
        img.onerror = function (e) {
 
        };
        img.src = this.getAttribute('data-tips-image') || this.src;
    });

0 条评论

还没有人发表评论

发表评论 取消回复

记住我的信息,方便下次评论
有人回复时邮件通知我

请喝咖啡

感谢博主,喝杯咖啡~

搜索文章
推荐文章