DOM 准备好后滑动 div。(jquery)
基本上我正在寻找一种在页面加载后在 jquery 中滑动 div 的方法。我找到了几种如何使用点击按钮像这样来做到这一点的方法,但找到解决方案的运气较差无需按钮即可加载它。我尝试处理这个上一个主题 但没有运气。
basically I am looking for a way to slideDown a div in jquery after the page has loaded. I've found few ways how to do it with a click button like this but less luck in finding a solution to load it without a button. I've tried to work with this previous topic
but no luck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
加载时执行此操作
此解决方案 http://jsfiddle.net/XqqtN/ 正在为您需要的代码 把它包起来
this solution http://jsfiddle.net/XqqtN/ is doing it on load
for your code you will need to wrap it in
您可以做的一件事是在 JS 中触发单击事件,以便 div 向下滑动可以在文档就绪时工作,而无需用户按下按钮。代码如下: http://jsfiddle.net/7VpPu/
您可以将按钮元素的不透明度设置为 0,这样它对用户来说仍然不可见
One thing you can do is to trigger the click event in the JS, so that the div slide down works on document ready, without the user having to press the buttton. code here: http://jsfiddle.net/7VpPu/
You can set the button element opacity to 0, so that it remains invisible to user