我使用Magnifying Glass jQuery plugin进行照片缩放。它工作正常,但是当我在引导模式中显示图像时,缩放不再起作用。
如何让缩放工作在bootstrap模式中?
答案 0 :(得分:0)
我过去曾尝试使用该插件,实际上让它与bootstrap模式一起工作是一项巨大的工作。最后我只使用了jQuery动画,如下所示:
$(this).animate({'zoom': 1.2}, 0);
其中$(this)是您正在使用的元素,1.2是缩放级别,0是缩放到1.2所需的时间。
我实际使用的全部功能如下:
$('*').hover(
function () {
$(this).animate({'zoom': 1.2}, 0);
$(this).css('user-select', 'none' );
},
function () {
$(this).animate({'zoom': 1}, 0);
});