gpt4 book ai didi

javascript - jQuery Backstretch 固定高度

转载 作者:太空宇宙 更新时间:2023-11-04 04:00:18 28 4
gpt4 key购买 nike

我在 Internet 上看到了一些这方面的主题,但是没有一个与解决我的问题相关。我目前正在使用 jQuery 插件 Backstretch 并成功地将其实现为整个页面的背景。但是,我想在具有固定高度的 div 中使用它。因此,它不是占据整个页面,而是充当图像 slider 。

我使用了 Backstretch 的 Github 上的文档来尝试实现它,但没有成功。 div 本身被分割(应该有一个很大的空白区域)但没有图像。

感谢您的帮助!

<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>Home</title>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Crimson+Text">
<script src="jquery.js"></script>
<script src="jquery.backstretch.js"></script>
</head>
<body>
<div class="backstretch">
<script>
$(".foo").backstretch("test1.jpg");
</script>
</div>

<div class="container">

<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>

</div>
</body>
</html>

有样式:

.backstretch{
width: 100%;
height: 500px;
}

最佳答案

您似乎选择了一个不存在的元素 (.foo) 用于回溯。

代替这个:

$(".foo").backstretch("test1.jpg");

试试这个:

$(".backstretch").backstretch("test1.jpg");

http://jsfiddle.net/89V38/

关于javascript - jQuery Backstretch 固定高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22186241/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com