Question / Help Is there a way to tile a .gif pic easily?

Clayton Morin

New Member
I have a .gif of stars that I'd like to tile as my background for my OBS. I'd like to know, 1, (I have checked the gif works) the gif was not working when I selected image and 2, where if there was is the ability to tile said gif?
 

clonefighter

New Member
I got this problem while setting up a thing for my friends, so I found this thread...

Could you describe what you mean with "tile the pic"?
So, we have an image like this, right?
1688977585190.png

What OP wants to do is make the image tile the screen - as in, repeat in every direction. Like this:
1688977812494.png
 

MMLTech

Member
Actually is fairly easy, create a text file name it index.html and paste the following code.
CSS:
<style>
body{
margin:0;
padding:0;
width:100%;
height: 100vh;
background: transparent url("path to you image or image url")
}
</style>
<body></body>

Load the file in OBS as browser source and check Local file
1688987149019.png


this way the GIF will tile/repeat as background and you can resize the source however you want.
 
Top