-
-
Save ColeTownsend/4454915 to your computer and use it in GitHub Desktop.
Vertical Slider
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
/** | |
* Vertical Slider | |
*/ | |
body { | |
background: #bababa; | |
min-width: 100%; | |
min-height: 100%; | |
} | |
.slider { | |
display: block; | |
margin: 0 auto; | |
border: none; | |
width: 200px; | |
height: 400px; | |
background: red; | |
overflow: hidden; | |
} | |
.slider ul { | |
list-style-type: none; | |
display: inline-block; | |
height: 600px; | |
width: 200px; | |
border: none; | |
outline: none; | |
} | |
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
<!-- content to be placed inside <body>…</body> --> | |
<body> | |
<div class="slider"> | |
<ul> | |
<li></li> | |
<li></li> | |
<li></li> | |
</div> | |
</body> |
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
// alert('Hello world!'); |
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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment