jQuery animate backgroundColor

前端 未结 17 2367
醉梦人生
醉梦人生 2020-11-21 07:11

I am trying to animate a change in backgroundColor using jQuery on mouseover.

I have checked some example and I seem to have it right, it works with other properties

17条回答
  •  半阙折子戏
    2020-11-21 08:00

    ColorBlend plug in does exactly what u want

    http://plugins.jquery.com/project/colorBlend

    Here is the my highlight code

    $("#container").colorBlend([{
        colorList:["white",  "yellow"], 
        param:"background-color",
        cycles: 1,
        duration: 500
    }]);
    

提交回复
热议问题