Created
January 24, 2018 21:32
-
-
Save jacobp100/c5c8e4b4ea9a7c235a700eba8bbb339e to your computer and use it in GitHub Desktop.
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> | |
<title>Ripple Carousel</title> | |
<style> | |
input { | |
box-sizing: border-box; | |
width: 200px; | |
} | |
.options { | |
width: 200px; | |
background: grey; | |
clip-path: inset(0 0 100%); | |
visibility: collapse; | |
transition-duration: 300ms; | |
} | |
input:focus ~ .options { | |
clip-path: inset(0); | |
visibility: visible; | |
} | |
</style> | |
<div class="navigation"> | |
<a href="#slide1" class="navigation__link"> | |
Slide 1 | |
</a> | |
<a href="#slide2" class="navigation__link"> | |
Slide 2 | |
</a> | |
<a href="#slide3" class="navigation__link"> | |
Slide 3 | |
</a> | |
</div> | |
<div class="carousel"> | |
<div id="slide1" class="carousel__slide"> | |
Slide 1 | |
</div> | |
<div id="slide2" class="carousel__slide"> | |
Slide 2 | |
</div> | |
<div id="slide3" class="carousel__slide"> | |
Slide 3 | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment