jquery 链接_jQuery链接微调

jquery 链接

A few weeks back I wrote an article about MooTools Link Nudging, which is essentially a classy, subtle link animation achieved by adding left padding on mouseover and removing it on mouseout. Here's how to do it using jQuery:

几周前,我写了一篇有关MooTools Link Nudging的文章,它本质上是一种优雅的,微妙的链接动画,它是通过在mouseover上添加左填充并在mouseout上将其删除来实现的。 这是使用jQuery的方法:

jQuery JavaScript (The jQuery JavaScript)


$(document).ready(function() {
	$('a.nudge').hover(function() { //mouse in
		$(this).animate({ paddingLeft: '20px' }, 400);
	}, function() { //mouse out
		$(this).animate({ paddingLeft: 0 }, 400);
	});
});


It's important to keep the nudge small and quick, so I set the animation to 20 pixels over 400 milliseconds.

保持微调的大小和速度非常重要,因此我将动画设置为400毫秒内20像素。

翻译自: https://davidwalsh.name/jquery-link-nudging

jquery 链接

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值