IM使用JQzoom进行项目我不是桌面版本已经完成,但我需要让productimage响应。宽度和高度在脚本的选项中定义。
;(function($){
$.fn.zoom = function(options){
var _option = {
align: "left",
thumb_image_width: 600,
thumb_image_height: 600,
source_image_width: 1200,
source_image_height: 1200,
zoom_area_width: 600,
zoom_area_height: "justify",
zoom_area_distance: 10,
zoom_easing: true,
click_to_zoom: false,
zoom_element: "auto",
small_thumbs: 12,
smallthumb_inactive_opacity: 0.4,
smallthumb_hide_single: true,
smallthumb_select_on_hover: false,
smallthumbs_position: "bottom",
show_icon: true,
hide_cursor: false,
speed: 600,
autoplay: true,
autoplay_interval: 6000,
keyboard: true,
right_to_left: false,
}
现在是我的问题,我可以使用%或vw / vh,因为如果我填写例如32vh脚本不起作用。 也许有一种方式可以让他们选择接受它,还是我必须更改代码的其余部分?
答案 0 :(得分:1)
正如LGSon在他的回复中所说,有许多硬编码引用固定像素测量被添加到DOM中的节点。这使得猴子修补脚本变得不可能,因此需要进行修改以满足您的要求
除了在自初始化函数结束时传递测量类型外,这是一个与您已经使用的脚本相同的修改过的脚本。
以下是插件更改的缩写版本:
(function ($, measurement) {
//GLOBAL VARIABLES
...
//centering lens
this.node.css({
top: 0,
left: 0,
width: this.node.w + measurement,
height: this.node.h + measurement,
position: 'absolute',
display: 'none',
borderWidth: 1 + measurement
});
};
$('.zoomWrapper', this.node).css({
width: Math.round(settings.zoomWidth) + measurement
});
$('.zoomWrapperImage', this.node).css({
width: '100%',
height: Math.round(settings.zoomHeight) + measurement
});
$('.zoomWrapperTitle', this.node).css({
width: '100%',
position: 'absolute'
});
}
this.ieframe.css({
display: 'block',
position: "absolute",
left: this.ieframe.left,
top: this.ieframe.top,
zIndex: 99,
width: this.ieframe.width + measurement,
height: this.ieframe.height + measurement
});
$(this.node).css({
'left': left + measurement,
'top': top + measurement
});
})(jQuery, 'vh');
以下是整个库修改完整的演示: http://codepen.io/nicholasabrams/pen/GZrjRW