我最近发现了以下网站:
https://www.bookworks.org.uk/publishing?content_type[]=output_book&min_price=0
该网站使用水平布局而不是垂直布局。阅读代码,我试图弄清楚他们如何设法在浏览器高度变化时调整图像大小。我想有些jQuery是必需的,但对于我的生活,我无法绕过代码。
任何人都可以指出我的位置,任何教程链接都会受到赞赏。
答案 0 :(得分:0)
答案 1 :(得分:0)
我会自己回答这个问题。我正在使用以下代码来响应水平布局:
<强> HTML:强>
<div id="page">
<div id="header">
</div>
<div id="slides">
<div class="slide"><img src="image01.jpg" /></div>
<div class="slide"><img src="image02.jpg" /></div>
<div class="slide"><img src="image03.jpg" /></div>
....
<div class="slide"><img src="imageN.jpg" /></div>
</div>
<div id="footer">
</div>
</div>
<强> CSS:强>
#slides {
width: 100%;
white-space: nowrap;
}
.slide {
display: inline-block;
margin-right: 20px;
vertical-align: top;
}
<强> jQuery的:强>
jQuery(document).ready(function($){
var $window = $(window),
$header = $('#header'),
$footer = $('#footer');
var getHorizontalPageHeight = function () {
return $window.height() - $header.outerHeight() - $footer.outerHeight();
};
var $slides = $('#slides'),
$items = $slides.find('img, iframe');
$items.each(function () {
var $item = $(this),
width = $item.data('width') || $item.attr('width') || 1,
height = $item.data('height') || $item.attr('height') || 1;
$item.data({
height: height,
ratio: width / height
});
});
var resizer = function () {
var contentHeight = getHorizontalPageHeight(),
windowWidth = $window.width(),
windowHeight = $window.height();
$items.each(function () {
var $item = $(this),
originalHeight = $item.data('height'),
height = contentHeight > originalHeight ? originalHeight : contentHeight,
width,
ratio = $item.data('ratio');
// desktops and tablets (horizontal)
if (windowWidth > 767) {
width = height * ratio;
$item.css({
width: width,
maxWidth: 'none',
height: width / ratio
});
// smartphones (vertical)
} else {
if ($item.is('iframe')) {
$item.css({
width: '100%',
maxWidth: height * ratio
});
$item.css('height', $item.width() / ratio);
} else {
$item.css({
width: 'auto',
maxWidth: '100%',
height: 'auto'
});
}
}
});
};
$window.on('resize', resizer);
resizer();
});