Skip to content

Instantly share code, notes, and snippets.

@zhangyangjing
Last active April 14, 2022 00:50
Show Gist options
  • Save zhangyangjing/a7f1dc26e24af8c30547 to your computer and use it in GitHub Desktop.
Save zhangyangjing/a7f1dc26e24af8c30547 to your computer and use it in GitHub Desktop.
cloud html
<!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