我正在尝试使用标题横幅实现滑动水平布局。
这是HTML结构:
<body>
<div id="header">
<div><a href="#one"> one </a></div>
<div><a href="#two"> two </a></div>
<div><a href="#thr"> thr </a></div>
</div>
<div id="one" class="panel"> </div>
<div id="two" class="panel"> </div>
<div id="thr" class="panel"> </div>
</body>
标题是固定的,并且面板已经提供了渐变背景(中间面板具有不同的颜色以用于调试目的)。 这是CSS:
body {
width: 6000px;
overflow: hidden;
}
.panel {
width: 33.3%;
float: left;
padding-left: 30px;
padding-right: 1040px;
margin-top: -75px;
height: 960px;
background-image: linear-gradient(to bottom, #0B88FF, #95EEFF);
}
#header {
position: fixed;
height: 75px;
margin-top: 25px;
}
#two{
background-image: linear-gradient(to bottom, #0B8800, #9E5EFF);
}
最后是管理面板之间动画的功能:
$(document).ready(function() {
$("#header a").bind("click", function(event) {
event.preventDefault();
var target = $(this).attr("href");
$("html, body").stop().animate({
scrollLeft: $(target).offset().left,
scrollTop: $(target).offset().top
}, 1200);
});
});
我面临的问题如下:
1)当用户使用鼠标滚轮时,我试图实现一个jQuery函数来运行幻灯片动画,但我的测试都没有...结构总是一样的:
$(window).scroll(function() {
if ($(this).scrollTop() > 0) {
var target // still not able to figure out who should i target
$("html, body").stop().animate({
//to the target >,<
}
});
2)当我的浏览器窗口处于100%大小时,一切似乎都运行良好,但如果我减少或增加缩放,一切都搞乱了&gt;,&lt; 我注意到可以处理这个,here is an example:
答案 0 :(得分:2)
要获取目标,您可以使用panel
类填充数组,然后使用索引在面板中移动。
最后,如果您在窗口调整大小时遇到问题,可以绑定此event并执行任何操作
使用您的代码尝试此示例:
$(document).ready(function() {
$("#header a").bind("click", function(event) {
event.preventDefault();
var target = $(this).attr("href");
$("html, body").stop().animate({
scrollLeft: $(target).offset().left,
scrollTop: $(target).offset().top
}, 1200);
});
var scroll_targets = $(".panel");
var scroll_targets_index = 0;
$(window).on('DOMMouseScroll mousewheel', function (e) {
if (e.originalEvent.wheelDelta < 0) {
if(scroll_targets_index < scroll_targets.length-1){
var where = ++scroll_targets_index;
$("html, body").stop().animate({
scrollLeft: $(scroll_targets[where]).offset().left,
scrollTop: $(scroll_targets[where]).offset().top
}, 1200);
}
}
else {
var where;
if(scroll_targets_index > 0){
where = --scroll_targets_index;
}
else{
where = 0;
}
$("html, body").stop().animate({
scrollLeft: $(scroll_targets[where]).offset().left,
scrollTop: $(scroll_targets[where]).offset().top
}, 1200);
}
});
$(window).resize(function () {
$('html,body').scrollTop($(scroll_targets[where]).offset().top);
$('html,body').scrollLeft($(scroll_targets[where]).offset().left);
});
});
&#13;
#body {
width: 6000px;
overflow: hidden;
}
.panel {
width: 33.3%;
float: left;
padding-left: 30px;
padding-right: 1040px;
margin-top: -75px;
height: 960px;
background-image: linear-gradient(to bottom, #0B88FF, #95EEFF);
}
#header {
position: fixed;
height: 75px;
margin-top: 25px;
}
#two{
background-image: linear-gradient(to bottom, #0B8800, #9E5EFF);
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="body">
<div id="header">
<div><a href="#one"> one </a></div>
<div><a href="#two"> two </a></div>
<div><a href="#thr"> thr </a></div>
</div>
<div id="one" class="panel"> </div>
<div id="two" class="panel"> </div>
<div id="thr" class="panel"> </div>
</div>
&#13;
答案 1 :(得分:1)
在Unravel中,我认为这是使用transform3d和其他一些css技巧用CSS和JavaScript制作的。如果你想获得滚动事件,当你有溢出时它不会发生:隐藏在身体上,因为你只是告诉浏览器隐藏它的所有卷轴!所以,我试图解决你现在遇到的问题的方法是使用mousewheel事件,其行为如下:
$(window).on('wheel', function (event) {
console.log(event); // Here you can see all of its events properties and functions in the console
});
有一个wheelDelta属性,如果你正在向前移动鼠标滚轮,则返回120,或者当向后执行鼠标滚轮时返回-120,所以我附加了一个计数器,以便我可以知道mousewheel事件被触发了多少次:
$(window).on('wheel', function (event) {
if (event.originalEvent.wheelDelta / 120 > 0 ) {
count++;
console.log(count) ;
if(count > 30 ){
$("html, body").stop().animate({
scrollLeft: $('#two').offset().left,
scrollTop: $('#two').offset().top
}, 1200);
}
if(count > 60 ){
$("html, body").stop().animate({
scrollLeft: $('#thr').offset().left,
scrollTop: $('#thr').offset().top
}, 1200);
}
if(count > 90 ){
$("html, body").stop().animate({
scrollLeft: $('#two').offset().left,
scrollTop: $('#two').offset().top
}, 1200);
count = 0;
}
}
});
这只是为了让你在鼠标滚轮改变到另一个面板时继续创建构建逻辑等等,祝你好运!