如何让div向下滑动
抱歉,我对 JQUery 很陌生,想知道如何制作 Div Slide Down?
JQuery 让我感到困惑,真的只需要帮助
Sorry I'm really new to JQUery and would like to know how do I make an Div Slide Down?
JQuery is confusing to me and really just need help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
试试这个:
HTML:
Javascript:
和可选 CSS:
试试这个,它会起作用:)
Try this:
HTML:
Javascript:
And Optional CSS:
Try this, and it will work :)
HTML
CSS
JAVASCRIPT
这是上述代码的 jsfiddle: http://jsfiddle.net/EfmeW/
另外,如果您希望 div 向上和向下滑动取决于 div 是否已经可见,您可以使用 .slideToggle() 而不是 .slideDown()
HTML
CSS
JAVASCRIPT
Here is a jsfiddle of the above code: http://jsfiddle.net/EfmeW/
Also if you want to have the div slideUp and Down depending on whether or not the div is already visible or not you can use .slideToggle() instead of .slideDown()
要向下滑动元素,只需使用以下命令:
查看此处的示例: http://jsfiddle.net/WvVf3/ 1/
希望这会有所帮助。
To slide an element down, just use this:
Check out an example here: http://jsfiddle.net/WvVf3/1/
Hope this helps.
当你说向下滑动时,你的意思是:
$('#me').slideDown();
或者
$(' #me').css('position','relative').animate({top:'+200'},'slow');
http://jsfiddle.net/rkw79/AnTDk/5/
When you say slide down, do you mean:
$('#me').slideDown();
or
$('#me').css('position','relative').animate({top:'+200'},'slow');
http://jsfiddle.net/rkw79/AnTDk/5/
使用以下JQuery。您需要有一个类 myDivClass 的 div,因为 JQuery 使用 CSS 选择器来查找元素。 document.ready 部分是确保在执行 Javascript 之前您的页面已完全下载/解析(这是关键的一步)。
这是一个 JSFiddle 作为示例,按下按钮时 div 会向下滑动。
PS 如果您正确使用 Firebug 或 Chrome,您现在就可以在此页面上尝试此操作!
Use the following JQuery. You'll need to have a div with class myDivClass as JQuery uses CSS-selectors to find elements. The document.ready part is to ensure your page is fully downloaded / parsed before the Javascript is executed (this is a crucial step).
Here is a JSFiddle as an example to have a div slide down on a button press.
P.S. If you are using Firebug or Chrome right, you can try this out right now on this page!