jQuery 在页面锚点/ID 对之间进行转换
我有一个大页面,其中有一堆大小相同的 div,并且都有唯一的 ID。最初,我使用 jQuery ScrollTo/LocalScroll 在不同锚点之间移动,但客户端想要更微妙的过渡,例如淡入/淡出。 jQuery 可以实现这样的事情吗?
我的页面的简化代码如下:
http://jsfiddle.net/Keefer/PWzf2/ 6/
单击右下角链接弹出导航。基本上,我想通过某种淡入淡出在不同的 div 之间进行转换。这可以通过 .animate 或某些 jQuery 插件实现吗?
I've got a big page with a bunch of divs all the same size, all uniquely ID'ed. Originally, I was using the jQuery ScrollTo/LocalScroll to move between the different anchors, but the client wants a more subtle transition, like a fade in/fade out. Is such a thing possible with jQuery?
Simplified code of my page is below at jsFiddle.net:
http://jsfiddle.net/Keefer/PWzf2/6/
Click the bottom right hand link to popup the navigation. Basically, I want to transition between the different divs with some sort of fading. Is that possible with .animate or some jQuery plugin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有 .fadeIn 和 .fadeOut 命令,这符合您的要求吗?
There is the .fadeIn and .fadeOut commands, does this fit your requirements?