在网页上淡入和淡出图像
我希望创建一个点击触发的图像轮播,例如,如果您单击按钮,图像会淡入,当您单击下一个选项的另一个按钮时,当前图像会淡出,按钮图像会淡入。
示例该网站的内容可以在 GE-Energy 网站 的“产品和服务”下找到(向下滚动一点) 。
怎么才能达到这样的效果呢?
I wish to create an click-triggered image carousel, such as if you click on the button, an image fades in and when you click another button for the next option, the current image fades out and the a button image fades in.
An example of this web's can be found under Products and Services on the GE-Energy website (scroll a bit down).
How could this effect be achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这种效果是通过使用 jQuery 使图像淡出和淡入来实现的。在代码中,这将类似于:
HTML:
编辑:
这是 HTML 源代码中需要的最少 JavaScript :
以及以下 HTML:
This effect is achieved by using jQuery to fade the images out and in. In code this would be along the lines of:
And the HTML:
Edit:
This is the minimum JavaScript you would need in your HTML source:
And the following HTML: