jQuery 动画
我正在尝试重新创建一些类似于本网站上的 div 加载效果的效果,即加载页面时没有可见内容,但单击导航链接时,它会动态加载 div。
这是一个电影制片厂网站,我希望它像这个网站一样具有互动性。有谁知道我如何使用 Javascript 和/或 jQuery 实现这些效果?
感谢您提前提供的所有帮助!
I am trying to recreate some effects similar to the div loading effects on this site i.e. there is no visible content when you load the page but upon clicking on a navigation link, it dynamically loads the divs.
It is for a film studio website and I would like it to be interactive like this site. Does anyone know how I could achieve these effects with Javascript and/or jQuery?
Thanks for all the help in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您以前使用过 jQuery 或者看过文档吗?使用 jQuery 的内置 动画效果 例如
淡入
。您链接到的网站不会动态加载内容 - 它都是同一页面的一部分,只是根据需要显示和隐藏。这是一个粗略的 fiddle 展示了它是如何工作的。当然,您需要弄清楚动画的风格和怪癖。
Have you used jQuery before or looked at the docs? This is really quite simple using jQuery's built-in animation effects such as
fadeIn
. The site you've linked to doesn't dynamically load the content - it's all part of the same page and simply displayed and hidden as appropriate.Here's a rough fiddle showing how it works. Of course, you'd need to work out the styles and quirks in animations.