幻灯片img在移动设备上可正确缩放(响应),但是当我在桌面上调整窗口大小时,我不希望它们缩小



.slideshow-wrapper{
      width:100%;
      max-width:980px; //this is the original width of image
}
#slideshow{
 clear:both;
 z-index:-5;
 width:100%;
}
#slideshow img{
 width:100%;
 height:auto;
}




 jQuery.each(slideArray, function(index,value) {  $("<img src='img/slides/"+value+"'
 width='980' height='450'>").appendTo("#slideshow");
 });




<div class="slideshow-wrapper">
 <div id="slideshow"> &nbsp; </div>
</div>

最佳答案

这是检测移动用户的轻量级解决方案:https://code.google.com/p/php-mobile-detect/

您可以使用它来加载两个不同的CSS文件。一种是带有被动图像,另一种是带有静态图像。
希望能有所帮助。

10-06 12:47