-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b867b29
commit 2818952
Showing
4 changed files
with
516 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# CSS3 Loading animations | ||
|
||
A Pen created on CodePen.io. Original URL: [zhackerloopback](https://github.com/zhackerloopback). | ||
|
||
Some css3 loading animations experiments. | ||
Have fun and remember to share what you learn :) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" > | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>CodePen - CSS3 Loading animations</title> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js" type="text/javascript"></script> | ||
|
||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> | ||
<link rel="stylesheet" href="./style.css"> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script> | ||
|
||
</head> | ||
<body> | ||
<!-- partial:index.partial.html --> | ||
<body> | ||
<div class="content"> | ||
<h3>CSS3 Loading animations</h3> | ||
<div class="load-wrapp"> | ||
<div class="load-1"> | ||
<p>Loading 1</p> | ||
<div class="line"></div> | ||
<div class="line"></div> | ||
<div class="line"></div> | ||
</div> | ||
</div> | ||
<div class="load-wrapp"> | ||
<div class="load-2"> | ||
<p>Loading 2</p> | ||
<div class="line"></div> | ||
<div class="line"></div> | ||
<div class="line"></div> | ||
</div> | ||
</div> | ||
<div class="load-wrapp"> | ||
<div class="load-3"> | ||
<p>Loading 3</p> | ||
<div class="line"></div> | ||
<div class="line"></div> | ||
<div class="line"></div> | ||
</div> | ||
</div> | ||
<div class="load-wrapp"> | ||
<!-- Loading 4 don't work on firefox because of the border-radius and the "dashed" style. --> | ||
<div class="load-4"> | ||
<p>Loading 4</p> | ||
<div class="ring-1"></div> | ||
</div> | ||
</div> | ||
<div class="load-wrapp"> | ||
<div class="load-5"> | ||
<p>Loading 5</p> | ||
<div class="ring-2"> | ||
<div class="ball-holder"> | ||
<div class="ball"></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="load-wrapp"> | ||
<div class="load-6"> | ||
<p>Loading 6</p> | ||
<div class="letter-holder"> | ||
<div class="l-1 letter">L</div> | ||
<div class="l-2 letter">o</div> | ||
<div class="l-3 letter">a</div> | ||
<div class="l-4 letter">d</div> | ||
<div class="l-5 letter">i</div> | ||
<div class="l-6 letter">n</div> | ||
<div class="l-7 letter">g</div> | ||
<div class="l-8 letter">.</div> | ||
<div class="l-9 letter">.</div> | ||
<div class="l-10 letter">.</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="load-wrapp"> | ||
<div class="load-7"> | ||
<p>Loading 7</p> | ||
<div class="square-holder"> | ||
<div class="square"></div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="load-wrapp"> | ||
<div class="load-8"> | ||
<p>Loading 8</p> | ||
<div class="line"></div> | ||
</div> | ||
</div> | ||
<div class="load-wrapp"> | ||
<div class="load-9"> | ||
<p>Loading 9</p> | ||
<div class="spinner"> | ||
<div class="bubble-1"></div> | ||
<div class="bubble-2"></div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="load-wrapp"> | ||
<div class="load-10"> | ||
<p>Loading 10</p> | ||
<div class="bar"></div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="clear"></div> | ||
</body> | ||
<!-- partial --> | ||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script><script src="./script.js"></script> | ||
|
||
</body> | ||
</html> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* =Credits | ||
-------------------------- | ||
* Loading 9 by http://demo.gavick.com/wordpress/game/ | ||
Some other nice animations : | ||
- https://codepen.io/adonisk/pen/vghsm | ||
- https://codepen.io/adonisk/pen/vghsm | ||
- https://codepen.io/m412c0/pen/Lhzer | ||
*/ |
Oops, something went wrong.