1

在此示例中如何调整图像大小?当我调整窗口大小时,我希望图像以适当的纵横比调整大小。

这应该使用 jquery 还是使用 html/css 来完成?

4

2 回答 2

2

由于您使用的是 jquery,因此您可以使用 resize 方法

$(window).resize(function() {
  // check the window width and resize your images
  var width = $(window).width();
});
于 2012-08-09T19:38:41.783 回答
0

A Simple search on google provides the answer.

Use JQuery Vegas to have full size fading. http://vegas.jaysalvat.com/

Use Supersized to have full size sliding. http://buildinternet.com/project/supersized/

于 2012-08-09T19:41:38.180 回答