Created
April 18, 2014 08:08
-
-
Save penguinwokrs/11030838 to your computer and use it in GitHub Desktop.
flipsnap-distance-enebled
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
.flipsnap { | |
width: 1350px; /* (item width + margin) * (item count) */ | |
padding-left: 25px; | |
} | |
.flipsnap:after { | |
content: ''; | |
display: block; | |
clear: both; | |
height: 0; | |
} | |
.item { | |
float: left; | |
width: 260px; | |
font-size: 50px; | |
text-align: center; | |
padding: 0; | |
margin: 0 5px; | |
background: #EFEFEF; | |
color: #666666; | |
} | |
div.slideflip{ | |
background-color: #2c2f74; | |
padding-top: 10px; | |
} | |
div.pointer { | |
text-align: center; | |
margin: 2px 5px 0 0; | |
} | |
.pointer span.current{ | |
background:#2c2f74; | |
} | |
.pointer span{ | |
display :inline-block; | |
width: 6px; | |
height: 6px; | |
border-radius: 7px; | |
border: 4px solid #FFFFFF; | |
background-color: #ffffff; | |
} |
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> | |
<meta charset="utf-8"> | |
<meta http-equlv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" href="flipsnap.css"> | |
</head> | |
<body> | |
<div class="viewport"> | |
<div class="flipsnap"> | |
<div class="item">1</div> | |
<div class="item">2</div> | |
<div class="item">3</div> | |
</div> | |
<div class="pointer"> | |
<span class="current"></span> | |
<span></span> | |
<span></span> | |
<span></span> | |
<span></span> | |
</div> | |
</div> | |
<script type src="jquery-1.10.1.min.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment