动态wordpress背景基于滑块图像

时间:2015-06-04 14:56:19

标签: javascript jquery css wordpress nivo-slider

我在wordpress上使用nivoSlider,我希望我的主页背景根据当前的幻灯片图像进行更改! 我没有javascript和jquery的经验,但我在php / html5 / css3中表现不错。 感谢。

1 个答案:

答案 0 :(得分:1)

WordPress nivo slider无法编辑滑块更改的回调(除非您编辑插件,因此会破坏与未来版本的兼容性)。但是general jQuery plugin允许你做到这一点。设置滑块时,您会执行以下操作:

$('#slider').nivoSlider({
    // [snip]
    afterChange: function(){
        // Get the currently active image
        var active_image = $(".nivo-controlNav .active");
        // Change the class on your element and style that element with CSS
        // E.g. by fetching some attribute with $(active_image).attr()
    },
    // [snip]
});