http://www.lifechurch.org.uk/new-here/about/ http://www.lifechurch.org.uk/media/blog/onclick事件彈跳
林想創建一個鏈接效果類同這一
我發現:
$(document).ready(function() {
$("#button").click(function(){
$(".target").effect("bounce",
{times:3}, 300);
});
});
我已經被告知它使用一個庫,任何想法,我可以從此源?
感謝 科斯蒂
UPDATE
我試着包裝中,我想反彈
<!doctype html>
<html>
<head><title>jQuery example</title></head>
<body>
<a href="#" id="button">Click me</a>
<div class="target">I will bounce</div>
<div class="target">I will bounce too, since I have the same class name</div>
<br>
<br>
<br>
<a href="#" id="button"><div class="target">Click me</div></a>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
<script>
$(document).ready(function() {
// Notice the .on instead of .click, it's the new style for events
// in jQuery and the e argument
$("#button").on('click', function (e) {
e.preventDefault();
$(".target").effect("bounce", { times : 3 }, 300);
});
});
</script>
</body>
而且是相互矛盾的類的鏈接。我不確定你是否看過我想重新創建的上述例子。但H1頭這是鏈接略顯「反彈」或縮進這是我想對WordPress的博客鏈接頭
感謝
至於你更新的代碼。您只能在任何給定頁面上擁有一個具有相同ID的元素。所以,如果你刪除第一個「點擊我」,最後一個將工作。 – fredrik
嗨弗雷德裏克,好東西。基本上我只想讓所有的H1班都這樣做。所以我可以在CSS中編碼,然後從那裏做到這一點? –
有沒有辦法讓它反彈?喜歡網站似乎在做 –