创建 Google 风格的背景图像推子?
嘿伙计们。如果您还没有看到,Google 可以添加自定义背景图像(无论好坏),我想知道如何使用 jQuery 实现相同的淡入加载效果。
有什么想法吗?
Hey guys. If you haven't already seen, Google has the ability to add a custom background image (for better or worse) and I was wondering how to achieve the same fade-in-on-load effect using jQuery.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
真正的问题是他们如何在调整浏览器大小时调整图像大小......淡入很容易:)
您还可以执行 $("#selectdiv").hide().animate({opacity : 1});
我认为淡入只是一个捷径
The real question is how do they resize the image on resizing the browser ... fading it in is easy :)
you can also do $("#selectdiv").hide().animate({opacity : 1});
I think fadeIn is just a shortcut to that annyway
jQuery 有一个用于此目的的方法,
fadeIn
。请参阅文档了解说明。顺便说一句,淡入淡出通常被实现为使用 javaScript 来不断修改图像的不透明度元素。
jQuery has a method for this purpose,
fadeIn
. See documentation for explanation.As an aside, fade is often implemented to use javaScript to continually modify the opacity of an element.