使用 jquery fadein 在页面加载时显示一系列链接
我想使用 jQuery 在页面加载时淡入导航 div 内的链接。目前,它们使用 a
进行样式设置并具有单独的 ID。
#navtop a {etc.}
我是否必须将其更改为一个类,添加另一个隐藏链接的类,并在淡入淡出开始时重新应用该类,或者是否有更简单的方法?
我还希望链接一个接一个地淡入。
HTML:
<div id="navtop">
<a id="link1" href="link.php"><img src="img/logotrans.gif" width="30" height="30" /></a>
<a id="link2" href="link.php">News</a>
<a id="link3" href="link.php">Blog</a>
<a id="link4" href="link.php">Tour</a>
<a id="link5" href="link.php">Photos</a>
<a id="link6" href="link.php">About</a>
<a id="link7" href="link.php">Contact</a>
</div>
这是我对 JavaScript 的了解:
$(window).load(function() {
$('#link1').fadeIn(5000, function() {
// Animation complete
});
});
I want to use jQuery to fade in links inside a nav div on page load. Currently they're styled using an a
and have individual id's.
#navtop a {etc.}
Will I have to change that into a class, add another one that hides the links and reapply the the class when the fadein starts or is there an easier method?
Also I'd like the links to fade in one after another.
HTML:
<div id="navtop">
<a id="link1" href="link.php"><img src="img/logotrans.gif" width="30" height="30" /></a>
<a id="link2" href="link.php">News</a>
<a id="link3" href="link.php">Blog</a>
<a id="link4" href="link.php">Tour</a>
<a id="link5" href="link.php">Photos</a>
<a id="link6" href="link.php">About</a>
<a id="link7" href="link.php">Contact</a>
</div>
This is as far as I've got with the JavaScript:
$(window).load(function() {
$('#link1').fadeIn(5000, function() {
// Animation complete
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 jQuery 队列 对淡入进行排队。就像这样:
在 jsFiddle 上观看直播。
这种方法的优点是您只需更改选择器就可以对任何节点集合进行排队。他们不一定是兄弟姐妹。
更新:
要错开淡入中途的开始时间,请使用:
在 jsFiddle 上查看。
要求解释:
我们通过 jQuery 在空对象 (
$({})
)上设置了一个通用队列容器。这看起来比将队列附加到某个节点更干净。我们使用任何有效的 jQuery 选择器选择节点,然后使用
each()< /code> functionDoc
循环遍历它们。
对于每个节点,我们使用 queue() 在自定义队列中添加一个条目 函数文档。
nextQ_Item
变量捕获该信息。fadeStagger
延迟时间。我们通过延迟时间与总时间的比率来计算最终的不透明度。dequeue()
函数将其关闭文档。You can queue up the fade-ins with a jQuery queue. Like so:
See it live at jsFiddle.
This approach has the advantage that you can queue up any collection of nodes, just by changing the selector. They do not have to be siblings.
Update:
To stagger the fade-in starts part-way in, use:
See it at jsFiddle.
Requested explanation:
We set up a generic queue container by jQuery-ing on an empty object (
$({})
). This seems cleaner than attaching the queue to some node.We select our nodes with any valid jQuery selector, and then use the
each()
functionDoc to loop through them.For each node, we add an entry into our custom queue, using the
queue()
functionDoc.nextQ_Item
variable.fadeStagger
delay time. We calculate the ending opacity by the ratio of the delay time to the overall time.dequeue()
functionDoc.无需更改任何标记。您想要的可以通过下面的代码轻松实现。实例: http://jsfiddle.net/tw16/pJ5uC/
我使用了 500 而不是5000 加速观看过程。
There is no need to change any of your markup. What you want can be achieved easily with the code below. Live example: http://jsfiddle.net/tw16/pJ5uC/
I've used 500 rather than 5000 to speed up the viewing process.
这将使它们同时淡入。
您将需要设置某种 setTimeout 并循环它们
This will get them to all fadein at the same time.
You will need to set up some sort of setTimeout and loop over them