I am using supersized plugin to have a rotating fullscreen image background with <a>
s. But as it sits behind my site content it can't be clicked. So i was wondering if it is possible to have an <a>
be swap to top onrollover and be clickable?<a href always on top by using jquery?
0
A
答えて
0
Try to use the .click() function instead of using href's.
0
は、使用して試すことができます:
$(".floating-links").hover(function() {
$(this).css({ "z-index": 1000 });
}, function() {
$(this).css({ "z-index": 0 });
});
0
あなたの要素のCSSのZインデックスをチェックする必要があると考えられる場合。
a {
z-index: 1000 /* Put in front of other objects */
}
PhotoshopのZインデックスをレイヤーと考えてください。
関連する問題
- 1. <a href ="" class=""> by using find() in jQuery
- 2. jQuery - always on top
- 3. jquery mobile fixed(always on top)header
- 4. Tkinterテキストエディタthats always on top
- 5. アンカータグ<a href = "#"> using scrapy
- 6. JQueryプル<a href
- 7. AEM <a href> not working when using JavaScript to concatenate string with currentPage.path
- 8. ページは<a href> tag in IE, jquery is attached to the a href
- 9. <a href> Post request always returns to wrong URL Angular
- 10. <a href=''> not working on the other pages
- 11. の理解jQueryのAPIドキュメント構文<a href="http://api.jquery.com/on/" rel="nofollow">http://api.jquery.com/on/</a>から
- 12. jQuery - target.href <a href="#"><img></a>
- 13. jquery drop on top、not cursor
- 14. jQueryのホバリングイベントon <a>モバイルデバイスのタグ
- 15. Stay-on-top CSSツールチップ
- 16. <a href="" with Class
- 17. <a href
- 18. <a href>とfont awesome
- 19. クリック時のブートストラップフリップ部<a href> does not work on mobile
- 20. タグ内<a href="....."></a></td> DOUBLE_WHITESPCE in query href
- 21. <a href="#"> when the anchor tag only triggers a jQuery action without redirecting the user?
- 22. Azureウェブサイト "Always On"
- 23. 特定の<a href..certain.domain.com... with php preg_replace
- 24. <a href> tags in Python
- 25. AWS:ドキュメント<a href="https://aws.amazon.com/blogs/devops/using-the-new-cloudformation-parameter-types/" rel="noreferrer">here</a>を見るCloudFormationテンプレート
- 26. <a href> inside a button in wordpress
- 27. - この<a href="https://plot.ly/javascript/axes/#using-dates-on-the-x-axis" rel="nofollow noreferrer">plotly example</a>の最初のデータポイント
- 28. <a href> link with id
- 29. <a href="#" onclick="funtion('test.php')">
- 30. <a href="#id"> to a javascript
クリックしたもの、画像の背景、またはリンクはどれですか?あなたの質問は明確ではありません。 –