How to fade changing background image

后端 未结 8 1980
旧巷少年郎
旧巷少年郎 2020-11-27 14:48

I want to fade the images when I do this code:

$(\"#large-img\").css(\'background-image\', \'url(\'+$img+\')\');

I\'ve tried putting fade i

8条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-27 15:20

    Opacity serves your purpose?

    If so, try this:

    $('#elem').css('opacity','0.3')
    

提交回复
热议问题