Href 链接在本地工作正常,但不是实时的。调查后,我发现触摸屏设备上的悬停状态存在问题。我认为这是我唯一的问题,但似乎链接现在根本没有点击。
更新 - 发现我还收到如下控制台错误消息:
拒绝在框架中显示“ http://www.youtube.com/watch?v=0lC8A0P4y00 ”,因为它将“X-Frame-Options”设置为“SAMEORIGIN”。
拒绝在框架中显示“ https://www.facebook.com/yiddishtwist?fref=ts ”,因为它将“X-Frame-Options”设置为“DENY”。
拒绝在框架中显示“ https://soundcloud.com/loya/sets/yto-forthcoming-debut-album ”,因为它将“X-Frame-Options”设置为“SAMEORIGIN”。
HTML
<a href="https://www.facebook.com/yiddishtwist?fref=ts">
<img src="images/facebook.png" height="62" alt="facebook link" /></a>
网站上没有 JS,除了以下内容,从 Mailchimp 复制粘贴并放在我的脑海中:
JS
<script type="text/javascript">document.createElement('header');
document.createElement('footer'); document.createElement('section');
document.createElement('article'); document.createElement('aside');
document.createElement('nav');</script>
我无法想象 CSS 会产生干扰,但以防万一,这是我的图像悬停状态:CSS
section img:hover {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
感谢任何想法。