Jquery问题幻灯片
你好,我有这个脚本:
<script type="text/javascript">
function animateIt() {
$(".logo img").slideUp("slow")
}
animateIt();
</script>
当我使用幻灯片时。图像移至顶部。但我会使用幻灯片。但是当我将幻灯片向上更改为幻灯片向下(“慢”)时。我的 .logo img 无法正常工作?我做错了什么?
Hallo i have this script:
<script type="text/javascript">
function animateIt() {
$(".logo img").slideUp("slow")
}
animateIt();
</script>
When i use slideup. The image going away to the top. But i wil use the slidedown. But when i change slide up to slideDown("slow"). My .logo img is not working? What do i wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你必须等待 dom 准备好:
You have to wait for the dom to be ready:
为什么在文档准备好之前运行这个脚本?您是否尝试过替换 animateIt();和
why are you running this script before the document is ready? have you tried replacing animateIt(); with