使用ScrollTo插件水平滚动div

发布于 2024-11-29 17:56:51 字数 1266 浏览 4 评论 0原文

我想要实现的是让 4 个 div 在“窗口空间”内水平滚动(从左到右)。我还包含了缓动插件,当您单击“TopLinks”链接并且 div 上下移动时,它可以完美地工作...但是,当尝试从左向右滚动时,缓动完全消失。

我想知道这是否与我的 CSS 有关,但我不确定。任何帮助使其正常工作将不胜感激。这是我的代码:

HTML

<ul id="topLinks">
    <li><a href="#contact">Contact</a></li>
    ...
    <li><a href="#home">Home</a></li>
</ul>
....
<div id="slider">
    <div class="active" id="home">
    //code here
    </div>
    ...
    <div class="active" id="contact">
    //Fourth & last div
    </div>
</div>

CSS

#slider { 
    position:relative;
    width:530px;
    height:380px;
    margin:60px auto auto 0px;
    overflow:hidden;
}

div.active {
    float:left;
    text-align:justify;
    line-height:30px;
    width:530px;
    height:380px;
    margin: 0px 0px 5px 0px;
    padding:0px;
}

JAVASCRIPT

$(document).ready(function() {
    $('#topLinks li a').click(function() {
        $('#slider').scrollTo( $(this).attr('href'), 2500, {easing:'swing', axis:'x'});
    });
});

我也会把它放在 jsfiddle 上,这样你就有了一个可以工作的演示。 http://jsfiddle.net/BftMr/

What I'm trying to achieve is to make 4 divs scroll horizontally (from left to right) within a "window-space". I've included the easing plugin as well, and it works perfectly when you click the "TopLinks" link and the divs move up and down... However, the easing disappears completely when trying to scroll from left to right.

Ive wondered if it had anything to do with my CSS, but Im not sure. Any help to get this working would be greatly appreciated. Here is my code:

HTML

<ul id="topLinks">
    <li><a href="#contact">Contact</a></li>
    ...
    <li><a href="#home">Home</a></li>
</ul>
....
<div id="slider">
    <div class="active" id="home">
    //code here
    </div>
    ...
    <div class="active" id="contact">
    //Fourth & last div
    </div>
</div>

CSS

#slider { 
    position:relative;
    width:530px;
    height:380px;
    margin:60px auto auto 0px;
    overflow:hidden;
}

div.active {
    float:left;
    text-align:justify;
    line-height:30px;
    width:530px;
    height:380px;
    margin: 0px 0px 5px 0px;
    padding:0px;
}

JAVASCRIPT

$(document).ready(function() {
    $('#topLinks li a').click(function() {
        $('#slider').scrollTo( $(this).attr('href'), 2500, {easing:'swing', axis:'x'});
    });
});

I'll throw it on jsfiddle as well, so you have a working demo. http://jsfiddle.net/BftMr/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空袭的梦i 2024-12-06 17:56:51

您需要用另一个 div 包裹滑块 div 中的每个项目,该 div 跨越其包含的每个项目的宽度。 (在本例中,我将其硬编码为 3000px,但您可能希望动态计算它)

这是一个工作示例:

http:// /jsfiddle.net/NdSyB/

希望这会有所帮助,如果确实如此,请将其标记为已回答。

You need to wrap each of the items within the slider div with another div which spans the width of each of the items it contains. (In this case I hardcoded it to 3000px but you would probably want to calculate this dynamically)

Here is a working example:

http://jsfiddle.net/NdSyB/

Hope this helps, if it does please mark it as answered.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文