var helperPos_x = $('.helper').offset().left;
$('.box').css('left', helperPos_x + helper_width + 'px');
我上面得到了这个代码,但它设置了像素值,所以.helper
宽度也应该以像素为单位来实现这一目标。如何将helperPos_x
值转换为百分比?有可能吗?有关于此的任何想法吗?
答案 0 :(得分:0)
我找到了答案。
helperPos_x = ($('.helper').offset().left / $(window).width() * 100);