我是 Javascript 的新手。我一直试图弄清楚这一点,但现在我被困住了......
我有一个背景滑块,它不会根据窗口大小保持其原始外观。为了避免过多的失真,例如在 Ipad 上的纵向模式。当窗口的高度大于其宽度时,我想我会为我的滑块使用另一个图像源。这是我到目前为止所得到的:
if(window.innerHeight > window.innerWidth){
document.getElementById('threesixty').attr('dataPath','path/to/imagesIpad{index}.jpg');
}
else {
$('.threesixty').attr('data-path','path/to/images{index}.jpg'); }
这是 html 中的内容
<div class="threesixty" data-path="path/to/images{index}.jpg" data-count="72">
但这不起作用...