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,则脚本无法正常工作。也许有一种方法可以让他们选择接受它,还是我必须更改其余代码?