gpt4 book ai didi

jquery - 制作 slider ,无法创建视口(viewport)

转载 作者:行者123 更新时间:2023-11-28 18:40:54 25 4
gpt4 key购买 nike

我正在尝试制作一个简单的水平 slider 。

就目前而言,我有三个 div,大小相同,排成一行。我确实有 jQuery 来移动它们,但目前视口(viewport)会随着它们一起移动,否则什么也不会发生。任何人都可以指出我的方向,以便视口(viewport)保持固定并且内容在其中滑动吗?这是到目前为止的代码...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Slider (cutdown, demo)</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$('#trigger1').click(function(){
$(".box").animate({left: "0"});
});
$('#trigger2').click(function(){
$("#viewport").animate({left: "-200"});
});
$('#trigger3').click(function(){
$(".box").animate({left: "-400"});
});
});
</script>
<style>
body {
background:#003;
color:#FFF;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}
#viewport {
width:200px;
height:200px;
overflow:hidden;
}
.box {
background-color:#069;
border-style:solid;
border-width:2px;
width:196px;
height:196px;
float:left;
}
</style>
</head>

<body>
<div id="trigger1">
Trigger One
</div>
<div id="trigger2">
Trigger Two
</div>
<div id="trigger3">
Trigger Three
</div>
<div id="viewport">
<div id="container">
<div id="box1" class="box">
Box One
</div>
<div id="box2" class="box">
Box Two
</div>
<div id="box3" class="box">
Box Three
</div>
</div>
</div>
</body>
</html>

最佳答案

给你的 .box 类一个 position 属性。我会推荐亲戚。然后给你的容器一个宽度,比如说 600px;。触发器 1 和 3 现在似乎工作正常。

jsFiddle example

关于jquery - 制作 slider ,无法创建视口(viewport),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11440949/

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