Setting Loaded GIF as a Background

前端 未结 3 919
时光取名叫无心
时光取名叫无心 2021-01-22 06:50

Situation: I have a JFrame and I have managed to import the GIF and display it in the Main Panel however it moves all of my other panels down, causing my GUI to be

3条回答
  •  北恋
    北恋 (楼主)
    2021-01-22 07:31

    You can do it in the style.css so this would be for the whole body.

    body { background-position: center center; background-image: url('../images/MyGif.gif'); background-repeat: no-repeat; }

    or create a class for it

    .frame{ background-position: center center; background-image: url('../images/MyGif.gif'); background-repeat: no-repeat; }

提交回复
热议问题