A Pen by Jasen Michael on CodePen.
Created
December 26, 2018 19:23
-
-
Save jasenmichael/2869a2f9c89da2da677b8f235ef86bfa to your computer and use it in GitHub Desktop.
Vuetify Fullscreen Carousel
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
<div id="app"> | |
<v-app id="inspire"> | |
<v-carousel | |
hide-controls | |
style="height:100%"> | |
<v-carousel-item | |
v-for="(item,i) in items" | |
v-bind:src="item.src" | |
:key="i"> | |
</v-carousel-item> | |
</v-carousel> | |
</v-app> | |
</div> |
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
new Vue({ | |
el: '#app', | |
data () { | |
return { | |
items: [ | |
{ | |
src: 'https://cdn.vuetifyjs.com/images/carousel/squirrel.jpg' | |
}, | |
{ | |
src: 'https://cdn.vuetifyjs.com/images/carousel/sky.jpg' | |
}, | |
{ | |
src: 'https://cdn.vuetifyjs.com/images/carousel/bird.jpg' | |
}, | |
{ | |
src: 'https://cdn.vuetifyjs.com/images/carousel/planet.jpg' | |
} | |
] | |
} | |
} | |
}) |
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
<script src="https://unpkg.com/vue/dist/vue.js"></script> | |
<script src="https://unpkg.com/[email protected]/dist/vuetify.min.js"></script> |
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
html { | |
overflow: hidden; | |
} | |
#inspire { | |
height: 100vh; | |
background-color: black; | |
border-style: solid; | |
border-color: grey; | |
} |
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
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons" rel="stylesheet" /> | |
<link href="https://unpkg.com/[email protected]/dist/vuetify.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment