<!-- 引入 react 18.2 -->
<script src="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-y/react/17.0.2/umd/react.production.min.js"></script>
<script src="https://lf3-cdn-tos.bytecdntp.com/cdn/expire-1-y/react-dom/17.0.2/umd/react-dom.production.min.js"></script>
<div id="app"></div>
HTML
格式化
支持Emmet,输入 p 后按 Tab键试试吧!
<head> ... </head>
<body>
</body>
$color-purple: #8B5CF6;
$color-pink: #EC4899;
$color-gray: #9CA3AF;
$color-black: #1F2937;
$card-size: 23rem;
body, #app {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background-image: linear-gradient(45deg, $color-purple, $color-pink);
font-family: 'Montserrat', sans-serif;
}
* {
box-sizing: border-box;
}
.carousel {
position: relative;
width: $card-size;
height: $card-size;
perspective: 500px;
transform-style: preserve-3d;
}
.card-container {
position: absolute;
width: 100%;
height: 100%;
transform:
rotateY(calc(var(--offset) * 50deg))
scaleY(calc(1 + var(--abs-offset) * -0.4))
translateZ(calc(var(--abs-offset) * -30rem))
translateX(calc(var(--direction) * -5rem));
filter: blur(calc(var(--abs-offset) * 1rem));
transition: all 0.3s ease-out;
}
.card {
width: 100%;
height: 100%;
padding: 2rem;
background-color: hsl(280deg, 40%, calc(100% - var(--abs-offset) * 50%));
border-radius: 1rem;
color: $color-gray;
text-align: justify;
transition: all 0.3s ease-out;
h2 {
text-align: center;
font-size: 2rem;
font-weight: bold;
margin: 0 0 0.7em;
color: $color-black;
}
p, h2 {
transition: all 0.3s ease-out;
opacity: var(--active);
}
}
.nav {
color: white;
font-size: 5rem;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
top: 50%;
z-index: 2;
cursor: pointer;
user-select: none;
background: unset;
border: unset;
&.left {
transform: translateX(-100%) translatey(-50%);
}
&.right {
right: 0;
transform: translateX(100%) translatey(-50%);
}
}
const { useState } = React;
const CARDS = 10;
const MAX_VISIBILITY = 3;
const Card = ({title, content}) => (
<div className='card'>
<h2>{title}</h2>
<p>{content}</p>
</div>
);
const Carousel = ({children}) => {
const [active, setActive] = useState(2);
const count = React.Children.count(children);
return (
<div className='carousel'>
{active > 0 && <button className='nav left' onClick={() => setActive(i => i - 1)}><<</button>}
{React.Children.map(children, (child, i) => (
<div className='card-container' style={{
'--active': i === active ? 1 : 0,
'--offset': (active - i) / 3,
'--direction': Math.sign(active - i),
'--abs-offset': Math.abs(active - i) / 3,
'pointer-events': active === i ? 'auto' : 'none',
'opacity': Math.abs(active - i) >= MAX_VISIBILITY ? '0' : '1',
'display': Math.abs(active - i) > MAX_VISIBILITY ? 'none' : 'block',
}}>
{child}
</div>
))}
{active < count - 1 && <button className='nav right' onClick={() => setActive(i => i + 1)}>>></button>}
</div>
);
};
const App = () => (
<div className='app'>
<Carousel>
{[...new Array(CARDS)].map((_, i) => (
<Card title={'Card ' + (i + 1)} content='Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident'/>
))}
</Carousel>
</div>
);
ReactDOM.render(
<App/>,
document.getElementById("app")
);