Skip to content

Instantly share code, notes, and snippets.

@chaoky
Last active April 9, 2025 01:10
Show Gist options
  • Select an option

  • Save chaoky/723f37f05f805abc3a0e2fffa9dbdde3 to your computer and use it in GitHub Desktop.

Select an option

Save chaoky/723f37f05f805abc3a0e2fffa9dbdde3 to your computer and use it in GitHub Desktop.
testing things
.bg {
background: url("https://media.discordapp.net/attachments/486338069331443716/1359323328656965703/Design_sem_nome_4.png?ex=67f71000&is=67f5be80&hm=b5be4c387068726ba96a0cddc7f777d771ceca49b49829a89416f40d874c841a&=&format=webp&quality=lossless&width=1172&height=659");
}
.thing {
background: url("https://media.discordapp.net/attachments/486338069331443716/1359330063686041713/611dddac-3cfc-4d0f-bb3a-0eb385f1a429_removalai_preview.png?ex=67f71646&is=67f5c4c6&hm=b08f6d9ab399e58b05491c48acf4ede5b57a885ee05679da7b25097ce8e8a7a4&=&format=webp&quality=lossless")
repeat 0 0;
height: 1000px;
width: 1000px;
animation: slide 1000s linear infinite;
}
@keyframes slide {
0% {
background-position: 0 0;
}
100% {
background-position: 100000px 100000px;
}
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://gist.githubusercontent.com/chaoky/723f37f05f805abc3a0e2fffa9dbdde3/raw/f03bdaa4500667460928976617fe06b4ff175ba4/animate.css">
</head>
<body>
<div class="bg">
<div class="thing"></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment