我想在当前图片幻灯片上更改div的背景。
所以在幻灯片1 =背景:蓝色 在幻灯片2 =背景:绿色
我认为有一个脚本像: 如果幻灯片1 == current-sr-slide-visible 改变这个css。
有人知道如何做到这一点?
答案 0 :(得分:0)
由于您没有显示任何代码,我假设:
slide
然后,你不需要jquery,你可以用css写一下:
.slide{
background:blue;
}
.slide.active{
background:green!important;
}
修改强>
你可以试试这个:
var slide_color = $(".active.slide").css('backgroundColor'); // get the current slide color
$(".div").css('backgroundColor', slide_color ); // set the color to the div.