Created
March 21, 2012 11:08
-
-
Save dziudek/2146234 to your computer and use it in GitHub Desktop.
Animated dots for pagination - with links
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
/** | |
* Animated dots for pagination - with links | |
*/ | |
/* this implementation uses links instead of the :before pseudoelement */ | |
ol { | |
list-style-type:none; | |
padding:0; | |
} | |
ol li { | |
float:left; | |
width:24px; | |
height:24px; | |
margin-left:10px; | |
text-indent: -999px; /* here you can use the text-indent for text hiding */ | |
} | |
ol li a { | |
display: block; | |
margin:4px; | |
width:16px; | |
height:16px; | |
background: #a00; | |
border-radius: 50%; | |
transition: all 0.15s ease-out; /* will work currently also on Chrome */ | |
} | |
ol li.active a, | |
ol li:hover a { | |
width:24px; | |
height:24px; | |
background:#f00; | |
margin:0; | |
} |
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
<!-- content to be placed inside <body>…</body> --> | |
<ol> | |
<li><a href="#">1</a></li> | |
<li><a href="#">2</a></li> | |
<li><a href="#">3</a></li> | |
<li><a href="#">4</a></li> | |
<li><a href="#">5</a></li> | |
</ol> |
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
{"view":"split","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment