change background image in body

后端 未结 4 936
情话喂你
情话喂你 2020-11-29 09:22

How do i change the background image in CSS at run time? I have the following background image in body and can the image be changed at run time?

body {
hei         


        
4条回答
  •  爱一瞬间的悲伤
    2020-11-29 09:36

    You would need to use Javascript for this. You can set the style of the background-image for the body like so.

    var body = document.getElementsByTagName('body')[0];
    body.style.backgroundImage = 'url(http://localhost/background.png)';
    

    Just make sure you replace the URL with the actual URL.

提交回复
热议问题