我有一个仅限javascript的图片库(NextGEN wordpress插件)
它是使用一个JS文件动态构建的。它会在您点击轮播时显示内容。
JS文件的大致轮廓是:
function buildPanels() {
// If panel overlay content exists, add the necessary overlay background DIV
// The overlay content and background are separate elements so the background's opacity isn't inherited by the content
j_panels.each(function(i){
if($('.panel-overlay',this).length>0) {
$(this).append('<div class="overlay-background"></div>');
}
});
它立即构建整个轮播,然后仅显示当前图像/描述。然后它根据条件/维度等分配一些CSS。
我想将上面代码创建的DIV转换为静态DIV,它只显示一次并保留在那里,而循环中的其余元素按照轮播循环。但我还想成为.panel-overlay的孩子(这不是一个静态元素)