当前位置:网站首页>Pictures are adaptive to the screen

Pictures are adaptive to the screen

2022-07-28 07:04:00 Jilei mountain Moyun cave

<body><ul></ul></body>

var bodyWidth = $(window).width();
var conwidth = window.innerWidth; 
var Wproportion =  bodyWidth / conwidth;
console.log(Wproportion)
var H = 200;
var W = 200;
var newH = Wproportion* H;
var newW = Wproportion* W;
for(var i = 1; i< 8;i++){
$('ul').append('<li><img class="imgsize" src="img/'+i+'.jpg"/></li>')
}
$(".imgsize").css({'width':newW,'height':newH});

原网站

版权声明
本文为[Jilei mountain Moyun cave]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/209/202207280517051077.html