Last active
April 14, 2022 00:50
-
-
Save zhangyangjing/a7f1dc26e24af8c30547 to your computer and use it in GitHub Desktop.
cloud html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style type="text/css"> | |
html,body { | |
padding: 0; | |
margin: 0; | |
} | |
.wrap { | |
height: 190px; | |
width: 600px; | |
margin: 150px auto 0; | |
background: url('bg-clouds.png'); | |
-webkit-animation:cloud 40s linear infinite; | |
-o-animation:cloud 40s linear infinite; | |
} | |
@-webkit-keyframes cloud { | |
from{background-position:0% 0%} | |
to{background-position:50% 50%} | |
} | |
</style> | |
</head> | |
<body> | |
<div class="wrap"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment