0
我在我的WP頁面上有這個滑塊,它是垂直的。我想將其轉換爲水平。據我瞭解,我需要更改我的JS代碼。從垂直到水平滑塊
jQuery(function($) {
var image_es;
var zoom_timer;
var win_width = 0;
function resize_venedor_thumbs() {
if (win_width != $(window).width()) {
if (image_es) {
image_es.destroy();
}
image_es = $('#thumbnails-slider-756').elastislide({
orientation : 'vertical',
minItems: 4
});
win_width = $(window).width();
}
if (zoom_timer) clearTimeout(zoom_timer);
}
$(window).load(resize_venedor_thumbs);
$(window).resize(function() {
clearTimeout(zoom_timer);
zoom_timer = setTimeout(resize_venedor_thumbs, 400);
});
});
我試圖在檢查元素模式下改變垂直到水平,但它根本沒有改變。
您做出更改後是否調整了窗口大小? – Matt
是的,它沒有工作。我只是在代碼編輯器中做了這個,它工作:) – osiic21