http://www.lifechurch.org.uk/new-here/about/ http://www.lifechurch.org.uk/media/blog/
我想创建一个类似于这个的链接效果
我发现了以下内容:
$(document).ready(function() {
$("#button").click(function(){
$(".target").effect( "bounce",
{times:3}, 300 );
});
});
我被告知它使用图书馆,知道我可以从哪里获得这个吗?
谢谢科斯蒂
更新
我尝试将链接包装在要反弹的类中
<!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 博客链接标题上重新创建的效果
谢谢