使用 Javascript setTimeout() 增加 Div 宽度
我们如何使用 setTimeout() 增加或减少 DIV 的宽度?
How can we increase or Decrease width of a DIV using setTimeout() ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
相关博客和规范:
http://www.elated。 com/articles/javascript-timers-with-settimeout-and-setinterval/
https://developer.mozilla.org/en/DOM/window.setTimeout
如果您想首先通过获取当前宽度来增加或减少,那么您可以查看 clientWidth():
https://developer.mozilla.org/en/DOM/element.clientWidth
或使用 jQuery 的 width():
http://api.jquery.com/width/
jQuery 变得非常流行,甚至被大公司使用,所以你可以考虑使用它。
a related blog and spec:
http://www.elated.com/articles/javascript-timers-with-settimeout-and-setinterval/
https://developer.mozilla.org/en/DOM/window.setTimeout
If you want to increase or decrease first by getting the current width, then you can look into clientWidth():
https://developer.mozilla.org/en/DOM/element.clientWidth
or use jQuery's width():
http://api.jquery.com/width/
jQuery is becoming very popular and even used by big corporations, so you can consider using it.