<div class="Slider">
<div class="Slide">1</div>
<div class="Slide">2</div>
<div class="Slide">3</div>
<div class="Slide">4</div>
<div class="Slide">5</div>
<div class="Slide">6</div>
</div>
.Slider {
width: 100vw;
height: 100vh;
}
.Slide {
display: flex;
align-items: center;
justify-content: center;
width: 400px;
height: 400px;
font-size: 4rem;
color: #fff;
font-weight: 600;
}
.Slide:nth-child(0n+1) { background: #D32F2F; }
.Slide:nth-child(0n+2) { background: #FFA000; }
.Slide:nth-child(0n+3) { background: #FFD54F; }
.Slide:nth-child(0n+4) { background: #4CAF50; }
.Slide:nth-child(0n+5) { background: #2196F3; }
.Slide:nth-child(0n+6) { background: #4A148C; }
/**
* Flickity Transformer
*
* https://github.com/elcontraption/flickity-transformer
*
* By Darin Reid: elcontraption.com
*
* Find Metafizzy's Flickity here: https://flickity.metafizzy.co/
*
* What is this?
* Flickity Transformer hooks into version 2's new `scroll` event to apply css transforms to slides.
*
* How do I play with this?
* - Create a transform in the `transforms` array. Each transform must have two properties: `name` (the transform function name), and an array of `stops`.
* - Each stop is an array with two values: x position in pixels relative to the home position of your carousel, and the transform value to apply at that position.
*
* See documentation at https://github.com/elcontraption/flickity-transformer
*
*/
const flkty = new Flickity('.Slider', {
setGallerySize: false,
pageDots: false
})
const transformer = new FlickityTransformer(flkty, [
{
name: 'scale',
stops: [
[-300, 0.5],
[0, 0.8],
[300, 0.5]
]
},
{
name: 'translateY',
stops: [
[-1000, 500],
[0, 0],
[1000, 500]
]
},
{
name: 'rotate',
stops: [
[-300, -30],
[0, 0],
[300, 30]
]
},
{
// Declare perspective here, before rotateY. At least two stops are required, hence the duplication.
name: 'perspective',
stops: [
[0, 600],
[1, 600]
]
},
{
name: 'rotateY',
stops: [
[-300, 45],
[0, 0],
[300, -45]
]
}
])
View Compiled