Created
March 9, 2022 17:53
-
-
Save oliveryasuna/8a0445c053d0877c5b3a9fb7076960dd to your computer and use it in GitHub Desktop.
CSS-only Slide Deck
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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<!-- Demo styles. --> | |
<style> | |
body { | |
body { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
} | |
main { | |
width: 1000px; | |
height: 200px; | |
} | |
} | |
</style> | |
<!-- Slide Deck styles. --> | |
<style> | |
.slide-deck { | |
display: flex; | |
width: 100%; | |
height: 100%; | |
overflow-x: auto; | |
scroll-snap-type: x mandatory; | |
} | |
.slide-deck > * { | |
flex: 0 0 100%; | |
scroll-snap-align: start; | |
} | |
</style> | |
</head> | |
<body> | |
<main> | |
<div class="slide-deck"> | |
<div style="background-color: red"></div> | |
<div style="background-color: green"></div> | |
<div style="background-color: blue"></div> | |
</div> | |
</main> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment