【发布时间】:2017-01-09 07:08:38
【问题描述】:
我的页内锚标记存在问题。当您单击向下箭头 <a href="#two"> 时,它应该向下滚动到 <div id="two">。它在 Chrome 和 Safari 中运行良好,但 Firefox 根本没有将箭头注册为链接。
我尝试将<div> 更改为<a> 标签,将<div id="two"> 替换为<a name="two">,我似乎无法在Firefox 中找到任何适合我的东西。
想法?
$(function() {
$('a[href*="#"]:not([href="#"])').click(function() {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html, body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
@import url(http://weloveiconfonts.com/api/?family=fontawesome);
[class*="fontawesome-"]:before {
font-family: 'FontAwesome', sans-serif;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
* {
font-family: 'Helvetica Neue', serif;
font-weight: lighter;
letter-spacing: 1px;
}
.arrow {
color: black;
font-size: 5em;
-o-transition:.5s;
-ms-transition:.5s;
-moz-transition:.5s;
-webkit-transition:.5s;
transition:.5s;
}
.arrow:hover {
color: lightgray;
}
.button {
background-color: transparent;
border-color: transparent;
margin-left: 50%;
margin-right: 50%;
margin-bottom: 250px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js" type="text/javascript"></script>
<div>
<button class="button">
<a href="#two">
<span class="fontawesome-angle-down arrow"></span>
</a>
</button>
</div>
<div id="two" class="section">
<article class="fade relative">
<div id="name">
<a href="#">
<a href="https://iamtrask.github.io/" target="_blank">
<img src="http://placehold.it/350x150" alt="I Am Trask" />
</a>
</a>
<h2 class="absolute-text art-title">I AM TRASK</h2>
<div id="hidden" class="absolute-text">
<p>• bullet 1<br>• bullet 2</p>
</div>
</div>
</article>
</div>
【问题讨论】:
标签: jquery html css firefox anchor