Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cnyet committed Nov 29, 2018
1 parent 5ed776c commit 3d09e51
Show file tree
Hide file tree
Showing 10 changed files with 11,046 additions and 0 deletions.
Empty file added css/main.css
Empty file.
66 changes: 66 additions & 0 deletions css/wave.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
#container{
width:290px;
height:290px;
margin:200px auto 24px;
border-radius:50%;
overflow:hidden;
position:relative;
background: linear-gradient(to bottom, rgba(125,185,232,.2), rgba(30,87,153,.8));
opacity:1;
}
#wave-one{
background-color:steelblue;
width:400px;
height:500px;
border-radius:170px;
position:absolute;
left:50%;
margin-left:-200px;
top:100px;
opacity:.45;
z-index:10;
animation-name: loop;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
#wave-two{
background-color:steelblue;
width:400px;
height:500px;
border-radius:150px;
position:absolute;
left:50%;
margin-left:-150px;
top:100px;
opacity:.4;
z-index:10;
animation-name: loop;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
#wave-three{
background-color:steelblue;
width:400px;
height:500px;
border-radius:170px;
position:absolute;
left:50%;
margin-left:-220px;
top:80px;
opacity:.25;
z-index:10;
animation-name: loop;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}

@keyframes loop{
0%{ transform: rotate(0deg); }
25%{ transform: rotate(90deg); }
50%{ transform: rotate(180deg); }
75%{ transform: rotate(270deg); }
100%{ transform: rotate(360deg); }
}
Binary file added images/banner01.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/banner02.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/banner03.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css" />
<script src="js/main.js"></script>
</head>
<body>

</body>
</html>
2 changes: 2 additions & 0 deletions js/jquery.min.js

Large diffs are not rendered by default.

Empty file added js/main.js
Empty file.
Loading

0 comments on commit 3d09e51

Please sign in to comment.