带有容器 Div 的图片库
我正在尝试使用 jquery 构建这样的画廊:
我想在每个容器中都有不同的背景图像div,以及每个 div 中的不同图像(img)。
我还希望 div 一个接一个地淡入,并在加载新页面时淡出。
我该如何设置呢?
Im trying to build a gallery like this with jquery:
I want to have a different background image in each container div, as well as a different image(img) in each div.
I also want the divs to fade in one after the other, as well as fade out when a new page is loaded.
How would i set this up?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你最好使用 jQuery 并使用 fadeIn 和 fadeOut 函数。您可以将 fadeIn 函数串在一起,以便在加载一个函数后,它会移动到下一个函数。
另外,对于背景图像,您只需为每个 div 指定一个 id 并通过 CSS 设置背景图像:
对于 div 内的图像,只需使用 HTML 放置它们:
You be best to use jQuery and use the fadeIn and fadeOut functions. You can string together the fadeIn functions so that after one has loaded it moves to the next one.
Also, for the background images, you just give each div an id and set the background images via CSS:
For the images inside the divs, just place them using HTML: