jQuery - 当 div 成为水平滑块上的当前容器时,div 内的动画内容

发布于 2024-12-26 09:33:17 字数 2651 浏览 1 评论 0原文

设置 我有一个全屏水平滑块,包含 5 个以上的 div,当您单击锚链接时,该滑块会向左移动。我有一些 jquery 的基本知识,并尝试使用 (scrollLeft)。但 div 是包装 div 隐藏在流中并且不会真正去任何地方。

目标是在容器 div 成为当前容器时对容器内的内容进行动画处理,并在它对不同的 div 进行动画处理时撤消动画。

问题:我可以播放动画,但无法控制它何时开始。


HTML

    <div class="contentItem" id="content2">
    <div id="top-box"></div>
    <div id="bottom-box"></div>
    </div>

    <div class="contentItem" id="content3"></div>

    <div class="contentItem" id="content4"></div>
    <div class="contentItem" id="content5"></div>

JavaScript

var theWidth;
var theHeight;
var currentContent = 0;

$(window).resize(function () {
  sizeContent();
});

$(window).ready(function () {
sizeContent();
});

function sizeContent() {
    theWidth = $(window).width();
    theHeight = $(window).height();
    sizeContentItems();
    setLeftOnContentItems();
    sizeContentWrapper(theWidth, theHeight);
    moveContent(currentContent, theWidth);
    changeSelected(currentContent);
}

function sizeContentItems() {
    $(".contentItem").css('width', theWidth);
    $(".contentItem").css('height', theHeight);
}

function setLeftOnContentItems() {
    var contentCount = 0;
    $(".contentItem").each(function (i) {
        contentCount += i;
        $(this).css('left', i * 990); //slider contern hight
    });
}

function sizeContentWrapper(width, height) {
    $("#contentWrapper").css('width', width);
    $("#contentWrapper").css('height', height);
}

function moveContent(i, width) {
    $("#contentWrapper").scrollLeft(i * width);
}

function changeSelected(i) {
    $(".selected").removeClass("selected");
    $("li:eq(" + i + ") a").addClass("selected");
}

function scrollContentNext() {
    scrollContent(currentContent + 1);
}

function scrollContent(i) {
    i = checkMax(i);
    scrollLogo(i);
    scrollTriangle(i);
    changeSelected(i)
    currentContent = i;
    $("#contentWrapper").animate({ scrollLeft: i * 990 }, 400); // how far to go
}

function scrollLogo(i) {
    var left = (i * +200);
    $("#logo").animate({ left: left }, 1000);
}

function scrollTriangle(i) {
    var left = (i * -300);
    $("#triangle").animate({ left: left }, 700);
}

// **my edit**

function scrollbox(i) {
var i = currentContent;
if ( currentContent = 2) {
    $("#bottom-box").stop().animate({'margin-top': '200px'}, 1500);
}
}


function checkMax(i) {
    var maxItems = $("li").length;
    if (i >= maxItems) {
        return 0;
    }
    return i;
}

The Setup I have a full screen horizontal slider with 5+ divs that moves to the left when you click on an anchor link. I have some basic knowledge of jquery, and did attempted to use (scrollLeft). But the div is the wrapper div is hiding over flow and doesn't really go anywhere.

The goal is to animate the content inside the container div when it becomes the current container, and undo animation when it does to a different div.

The Issue: I got the animation to play, but have no control over when it starts.


The HTML

    <div class="contentItem" id="content2">
    <div id="top-box"></div>
    <div id="bottom-box"></div>
    </div>

    <div class="contentItem" id="content3"></div>

    <div class="contentItem" id="content4"></div>
    <div class="contentItem" id="content5"></div>

The javascript

var theWidth;
var theHeight;
var currentContent = 0;

$(window).resize(function () {
  sizeContent();
});

$(window).ready(function () {
sizeContent();
});

function sizeContent() {
    theWidth = $(window).width();
    theHeight = $(window).height();
    sizeContentItems();
    setLeftOnContentItems();
    sizeContentWrapper(theWidth, theHeight);
    moveContent(currentContent, theWidth);
    changeSelected(currentContent);
}

function sizeContentItems() {
    $(".contentItem").css('width', theWidth);
    $(".contentItem").css('height', theHeight);
}

function setLeftOnContentItems() {
    var contentCount = 0;
    $(".contentItem").each(function (i) {
        contentCount += i;
        $(this).css('left', i * 990); //slider contern hight
    });
}

function sizeContentWrapper(width, height) {
    $("#contentWrapper").css('width', width);
    $("#contentWrapper").css('height', height);
}

function moveContent(i, width) {
    $("#contentWrapper").scrollLeft(i * width);
}

function changeSelected(i) {
    $(".selected").removeClass("selected");
    $("li:eq(" + i + ") a").addClass("selected");
}

function scrollContentNext() {
    scrollContent(currentContent + 1);
}

function scrollContent(i) {
    i = checkMax(i);
    scrollLogo(i);
    scrollTriangle(i);
    changeSelected(i)
    currentContent = i;
    $("#contentWrapper").animate({ scrollLeft: i * 990 }, 400); // how far to go
}

function scrollLogo(i) {
    var left = (i * +200);
    $("#logo").animate({ left: left }, 1000);
}

function scrollTriangle(i) {
    var left = (i * -300);
    $("#triangle").animate({ left: left }, 700);
}

// **my edit**

function scrollbox(i) {
var i = currentContent;
if ( currentContent = 2) {
    $("#bottom-box").stop().animate({'margin-top': '200px'}, 1500);
}
}


function checkMax(i) {
    var maxItems = $("li").length;
    if (i >= maxItems) {
        return 0;
    }
    return i;
}

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文