我有 3 个不同的背景图像,我想一个接一个地水平添加它们。
#bgwrap{width:100%;height:100%; overflow:hidden;}
#bg1{width:1000px;height:100%; background: #000 url(bg1.jpg) no-repeat center top;}
#bg2{width:1000px;height:100%; background: #000 url(bg2.jpg) no-repeat center top;}
#bg3{width:1000px;height:100%; background: #000 url(bg3.jpg) no-repeat center top;}
稍后,当我想查看第二个背景时,我可以使用 jquery 仅选择查看开始宽度 = 1001px 到 2000px。那么如何将它们一起添加到单个类或 ID 中,以便我可以使用 jquery 来选择它呢?