我使用Slider pro插件,但不可能以百分比设置高度值。
所以我想换算像素百分比。我需要我的滑块占据窗户高度的75%。
怎么做?
var windowHeight = $(window).height();
然后我需要在滑块的属性中输入'height'的值(以像素为单位):
$('#carousel-header').sliderPro({
width: '100%',
height: VALUE IN PIXELS,
aspectRatio: -1,
buttons: false,
imageScaleMode: 'cover',
waitForLayers: true,
fade: true,
autoplay: true,
touchSwipe: false,
autoplayOnHover: 'none',
autoScaleLayers: false,
smallSize: '480'
});
答案 0 :(得分:1)
尝试:($(window).height() /100)*75
取代你的价值
这应该转换它。