我有一个内容包装器,其中有几个部分,每个部分都有不同的 id。可以通过菜单导航访问这些部分,该菜单导航触发转换操作,该操作使用translate3d在部分之间进行横向移动,使用名为active的类来显示应显示的部分。我将两个具有绝对位置的锚点放在内容包装器上,就像幻灯片中的箭头一样,一个在左边,一个在右边。
这是代码的外观
<div id="wrapper">
<a class="left-arrow" href="#"></a>
<a class="right-arrow" href="#"></a>
<header>
<nav id="main">
<a class="active" href="#!/one">one</a>
<a href="#!/two">two</a>
<a href="#!/three">three</a>
<a href="#!/four">four</a>
</nav>
</header>
<div class="content_wrapper" style="display: block; transform: translate3d(0px, 0px, 0px);">
<section id="one" class="active">content one</section>
<section id="two">content two</section>
<section id="three">content three</section>
<section id="four">content four</section>
</div>
</div>
CSS
.left-arrow{ background: url('../img/left-arrow.png') left top no-repeat; height: 64px; width: 16px; display: block; position: absolute; top: 180px; left: 0; z-index: 10;}
.right-arrow{ background: url('../img/right-arrow.png') right top no-repeat; height: 64px; width: 16px; display: block; position: absolute; top: 180px; right: 0; z-index: 10;}
我的问题是,我不知道如何在第一部分的课程处于活动状态时隐藏左箭头,而在最后一个部分的课程处于活动状态时隐藏右箭头。我尝试了on和change但显然我失败了,我是 jQuery 元素和事件操作的新手。我应该使用哪个选择器以及哪个事件?有人可以给我一些指示吗?
这是jQuery部分
(function (e) {
var r = !1;
e(window).on("hashchange", function (i) {
var s = e("section#" + document.location.hash.replace("#!/", ""));
if (!r && !s.hasClass("active")) {
r = !0;
e('nav#main a[href="' + document.location.hash + '"]').addClass("active").siblings().removeClass("active");
e("section.active").animate({
scrollTop: 0
}, 300);
e("section.active").children("footer").children("div.box").hide();
s.addClass("active").siblings().removeClass("active");
if (Modernizr.csstransitions && Modernizr.csstransforms3d) e("div.content_wrapper").transition({
transform: "translate3d(-" + 1e3 * s.index() + "px, 0, 0)"
}, {
duration: 800,
easing: "cubic-bezier(0.770, 0.000, 0.175, 1.000)"
}, function () {
r = !1
});
else {
e("div.content_wrapper").animate({
left: "-" + 1e3 * s.index() + "px"
}, {
duration: 800,
queue: !0
});
r = !1
}
}
});
})