我在我的网站中使用this navigation
样式,主要在Safari browser
上运行。
在此,每anchor tag
个li
(总共5 li
)。每个anchor
在href
中都有不同的值。但是当我将鼠标光标移动到第一个(或第二个,第三个,第四个)anchor
时,它会显示最后href
anchor
的{{1}}。因此,当我点击任意tag
anchor
时,它会继续tag
anchor's
。
这是我的demo
答案 0 :(得分:1)
我通过改变css来解决我的问题 在这个css类
.csstransforms .cn-wrapper li a {
display: block;
font-size: 1.18em;
height: 14.5em;
width: 14.5em;
position: absolute;
bottom: -7.25em;
right: -7.25em;
border-radius: 50%;
text-decoration: none;
color: #fff;
padding-top: 1.8em;
text-align: center;
-webkit-transform: skew(-50deg) rotate(-70deg) scale(1);
-ms-transform: skew(-50deg) rotate(-70deg) scale(1);
-moz-transform: skew(-50deg) rotate(-70deg) scale(1);
transform: skew(-50deg) rotate(-70deg) scale(1);
-webkit-backface-visibility: hidden;
-webkit-transition: opacity 0.3s, color 0.3s;
-moz-transition: opacity 0.3s, color 0.3s;
transition: opacity 0.3s, color 0.3s;
}
我从上面的课程中删除position:fixed
(建议here),所以现在anchor
tags
正常工作:)
希望它会帮助别人