当我手动前进滑块时,滑块会跳到页面顶部。我怎样才能防止这种情况发生?非常感谢!这是代码:
<div class="row">
<div class="span12">
<script>
$('.carousel').carousel({
interval: 4000
})
</script>
<div class="container">
<div id="myCarousel" class="carousel slide frame">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item"><a href="work.html"><img src="assets/images/slide_psd.jpg" width="1170" alt="wga"></a></div>
<div class="item"><a href="work.html"><img src="assets/images/slide_wga.jpg" width="1170" alt="wga"></a></div>
<div class="item"><a href="work.html"><img src="assets/images/slide_ts.jpg" width="1170" alt="top secret hair"></a></div>
<div class="item"><a href="work.html"><img src="assets/images/slide_baja.jpg" width="1170" alt="baja"></a></div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div>
</div>
<!-- end cara container-->
</div>
<!-- end span-->
</div>
<!-- end row-->
答案 0 :(得分:23)
您可以添加引用您的轮播的数据目标属性:data-target =“#carousel”
答案 1 :(得分:6)
你可以内联(不太干净):
<a class="left carousel-control" role="button" data-slide="prev"
onclick="$(this).closest('.carousel').carousel('prev');">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" role="button" data-slide="next"
onclick="$(this).closest('.carousel').carousel('next');">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
或者你可以做全局假设你删除了href =“#controlid:
$('body').on('click','.carousel-control',function() {
$(this).closest('.carousel').carousel( $(this).data('slide') );
});
或者你可以通过在选择器中更具体来单独完成
$('body').on('click','#carouselID .carousel-control',function() {
$(this).closest('.carousel').carousel( $(this).data('slide') );
});
答案 2 :(得分:2)
事实证明,导致此问题的另一个页面有一个平滑的页面跳转脚本。我从custom.js中移出了以下内容后,它可以工作:
function filterPath(string) {
return string
.replace(/^\//,'')
.replace(/(index|default).[a-zA-Z]{3,4}$/,'')
.replace(/\/$/,'');
}
var locationPath = filterPath(location.pathname);
var scrollElem = scrollableElement('html', 'body');
$('a[href*=#]').each(function() {
var thisPath = filterPath(this.pathname) || locationPath;
if ( locationPath == thisPath
&& (location.hostname == this.hostname || !this.hostname)
&& this.hash.replace(/#/,'') ) {
var $target = $(this.hash), target = this.hash;
if (target) {
var targetOffset = $target.offset().top;
$(this).click(function(event) {
event.preventDefault();
$(scrollElem).animate({scrollTop: targetOffset}, 400, function() {
location.hash = target;
});
});
}
}
});
// use the first element that is "scrollable"
function scrollableElement(els) {
for (var i = 0, argLength = arguments.length; i <argLength; i++) {
var el = arguments[i],
$scrollElement = $(el);
if ($scrollElement.scrollTop()> 0) {
return el;
} else {
$scrollElement.scrollTop(1);
var isScrollable = $scrollElement.scrollTop()> 0;
$scrollElement.scrollTop(0);
if (isScrollable) {
return el;
}
}
}
return [];
}
答案 3 :(得分:2)
你应该尝试 jquery :
$('.carousel-control').click(function (e) {
e.preventDefault();
});
答案 4 :(得分:1)
当您链接到HTML锚点时,它将相对于<div id="myCarousel">
所在的位置(默认情况下使用Twitter Bootstrap)位于轮播的顶部。我看到您使用data-
代码,因此我认为不需要href
属性。
改变这个:
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div>
到此:
<!-- Carousel nav -->
<a class="carousel-control left" data-slide="prev">‹</a>
<a class="carousel-control right" data-slide="next">›</a>
</div>
目前我不在办公室,所以我没有时间在超过1个场景中进行测试,但是从外观来看,它仍然可以正常工作。给你你想要的结果。
答案 5 :(得分:0)
我试图建立一个这样的工作文件。我没有看到跳跃行为。没有做任何与众不同的事情只是复制你的标记,添加了样本图像,bootstrap.js,bootstrap-carosel.js和bootstrap.css
http://brandonam.com/bootTest/boot.html
fyi:'#myCarousel'的典型浏览器行为是将窗口焦点指向标记为'#myCarousel'的元素...但我认为bootstrap默认禁止此操作。不应该四处走动。
答案 6 :(得分:0)
将href设置为href="javascript:void(0)"
,然后将其添加到js中的某处:
$('.carousel-control.right').click(function(){ $('.carousel').carousel('next')});
$('.carousel-control.left').click(function(){ $('.carousel').carousel('prev')});
答案 7 :(得分:0)
我遇到了同样的问题
我的标签看起来像:
<a class="carousel-control right" data-mixpanel-tracker="Slider Next" data-slide="next" href="#carousel">
通过删除标记中的额外混合面板属性来解决它:
<a class="carousel-control right" data-slide="next" href="#carousel">
抱歉,它没有解决您的问题,但它可能会帮助其他有类似问题的人。
答案 8 :(得分:0)
这个对我很有用。用&#34; data-target&#34;替换href。
<a class="carousel-control right" data-slide="next" data-target="#carousel">
答案 9 :(得分:0)
我们在此上花费了很多时间,但是设置data-target
属性和其他解决方案对我们而言不起作用。网页的向上滚动/跳转均与发生无关。
这似乎发生在Bootstrap3传送带上,其中每个幻灯片的高度都不同。 @Fabian的上述评论对我们有所帮助。对于那些错过它的人来说,在轮播类中添加overflow:hidden是解决此问题的好办法:
@media (min-width: 768px)
{
#our-carousel
{
overflow: hidden; /* workaround to resolve the page jumping/scrolling up on
smaller screens on auto/manual advancing of
carousel */
}
}
答案 10 :(得分:0)
我最终添加了一个溢出:隐藏;到完成该技巧的轮播类。
答案 11 :(得分:0)
我遇到了同样的问题,发现将指示器按钮锚标记中的 HTML 属性 href=
替换为 data-target=
可以缓解页面跳转问题。
<a class="carousel-control-prev" data-target="#carouselExampleIndicators" role="button" data-slide="prev">
<a class="carousel-control-next" data-target="#carouselExampleIndicators" role="button" data-slide="next">
答案 12 :(得分:-1)
href="#myCarousel"
正在寻找<a name='myCarousel'></a>
并试图将窗口移动到该位置。
尝试将您的href设置为href="javascript:void(0)"