Codrops 원본

Smooth Panel Scroll Effects

스크롤 · MIT

스크롤 더 보기
ORIGINAL PREVIEW
Smooth Panel Scroll Effects 정적 미리보기

갤러리 안에서는 화면을 벗어나거나 움직임을 멈추면 예제도 닫힙니다. 다시 재생할 때는 처음부터 시작해요.

큰 화면으로 보기 새 탭

SOURCE FILES

원본 코드 읽기

15개 파일

수집한 원본 소스와 실행 안내를 함께 제공합니다.

src/css/base.css
파일 저장

*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 16px;
	--color-text: #000;
	--color-bg: hsl(22deg 25% 73%);
	--color-text-alt: hsl(1deg 69% 50%);
	--color-link: #000;
	--color-link-hover: #000;
	/* Column/item variables */
	--ratio: 1.3; 				/* image ratio */
	--grid-item-width: 32vw;	/* image width */
	--justify: space-between;	/* spread columns or center */
	--gap: 2.5vw;				/* column gap and margin for items */
	--rotation: 0deg;			/* section rotation */
	--radius: 0px;				/* image border radius */
	--offset: -30vh;			/* offset of even columns */
	/* content section */
	--radius-small: 4px; 		/* border radius of small images */
}

body {
	margin: 0;
	text-transform: uppercase;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: acumin-pro, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.demo-2 {
	--color-bg: #df6a26;
    --color-text-alt: #eaa750;
	--ratio: 1;
	--grid-item-width: 23vw;
	--radius: 8px;
}

.demo-3 {
	--color-bg: #ede9e6;
	--color-text-alt: hsl(10deg 69% 50%);
	--ratio: 1.1;
	--grid-item-width: 17vw;
	--radius: 12px;
	--justify: center;
	--gap: 2.5vw;
}

.demo-4 {
	--color-text: #fff;
	--color-link: #fff;
	--color-link-hover: #aaa;
	--color-bg: #0f0e0e;
	--color-text-alt: hsl(10deg 69% 50%);
	--ratio: 1;
	--grid-item-width: 25vw;
	--radius: 4px;
	--justify: center;
	--gap: 2.5vw;
	--rotation: -45deg;
	--offset: 20vh;
}

.demo-5 {
	--color-bg: hsl(1deg 15% 83%);
	--color-text-alt: hsl(10deg 69% 50%);
	--ratio: 0.8;
	--grid-item-width: 30vw;
	--radius: 0;
	--justify: center;
	--gap: 1.5vw;
	--offset: 0;
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 1000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;

}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
	cursor: pointer;
}

a:hover {
	color: var(--color-link-hover);
	outline: none;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
	/* Provide a fallback style for browsers
	 that don't support :focus-visible */
	outline: none;
	background: lightgrey;
}

a:focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
	background: transparent;
}

a:focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	outline: 2px solid red;
	background: transparent;
}

.unbutton {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
}

.unbutton:focus {
	outline: none;
}

.frame {
	width: 100%;
	line-height: 1.2;
	font-size: 1rem;
	color: var(--color-title);
	padding: 1rem;
	display: grid;
	grid-template-columns: auto auto;
	grid-template-areas: 'title prev' 'nav nav' 'sponsor sponsor';
	grid-gap: 1rem;
	z-index: 100;
	position: absolute;
}

.frame a:not(.frame__title-back),
.row + p a {
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}

.frame a:not(.frame__title-back)::before,
.row + p a::before {
	content: '';
	height: 1px;
	width: 100%;
	background: currentColor;
	position: absolute;
	top: 90%;
	transition: transform 0.3s;
	transform-origin: 0% 50%;
}

.frame a:not(.frame__title-back):hover::before,
.row + p a:hover::before {
	transform: scaleX(0);
	transform-origin: 100% 50%;
}

.frame__title {
	grid-area: title;
	display: flex;
	white-space: nowrap;
}

.frame__title-main {
	font-size: 1rem;
	margin: 0;
	font-weight: normal;
}

.frame__title-back {
	position: relative;
	display: flex;
	align-items: flex-end;
}

.frame__title-back span {
	display: none;
}

.frame__title-back svg {
	fill: currentColor;
}

.frame__prev {
	justify-self: end;
	grid-area: prev;
}

.frame__demos {
	grid-area: nav;
	display: flex;
	flex-wrap: wrap;
	justify-self: stretch;
	justify-content: space-between;
}

.frame__demos-title {
	font-weight: 400;
	margin: 0;
	font-size: 1rem;
	width: 100%;
	color: var(--color-text-alt);
}

.frame__demos-item {
	grid-row: 2;
}

.section {
	line-height: 1;
	position: static;
    top: 0;
    z-index: 4;
    width: 100%;
    min-height: 100vh;
    background: var(--color-bg);
}

.section--intro {
	margin-bottom: 250vh;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	padding: 8rem 0 2rem;
	cursor: default;
}

.section__title {
	font-family: kudryashev-d-excontrast-sans, sans-serif;
	font-weight: 300;
	font-size: clamp(2rem,17vw,12.5rem);
	margin: 5vh 0 6vh;
	line-height: 0.9;
	text-transform: none;
	-moz-font-feature-settings: "swsh";
	-webkit-font-feature-settings: "swsh";
	font-feature-settings: "swsh";
}

.section__title--medium {
	font-size: clamp(1.5rem,12vw,9rem);
}

.section__text {
	margin: 0;
	max-width: 400px;
}

.section__text--alt {
	margin-top: auto;
	color: var(--color-text-alt);
}

.section__arrow {
	transform: translateY(3px) rotate(135deg);
	fill: currentColor;
}

.section--columns {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
}

.columns {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: var(--justify);
	gap: var(--gap);
	height: 100%;
	transform: rotate(var(--rotation));
	align-items: center;
	will-change: transform, opacity;
}

.column-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	padding: 5vh 0 15vh;
	will-change: transform;
}

.column-wrap:nth-child(even) {
	margin-top: var(--offset);
}

.column {
	position: relative;
	display: block;
	will-change: transform;
}

.column__item {
	--grid-item-height: calc(var(--grid-item-width) * var(--ratio));
	width: var(--grid-item-width);
	height: var(--grid-item-height);
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	cursor: pointer;
	margin: 0 0 var(--gap) 0;
	z-index: 1;
	will-change: transform, filter;
}


.column__item-img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	will-change: transform;
}

.section--showcase {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	padding: 8rem 5vw 10vh;
	cursor: default;
}

.section__header {
	display: flex;
	border-bottom: 1px solid #000;
	width: 100%;
	align-items: center;
	justify-content: space-around;
	padding: 4vh 8vw;
	margin-bottom: 4rem;
}

.section__year {
	color: var(--color-text-alt);
}

.row {
	text-align: left;
	width: 100%;
}

.row__header {
	width: 100%;
	display: grid;
	grid-template-columns: 4ch 1fr;
	grid-template-rows: auto auto;
	grid-gap: 2rem;
	justify-content: start;
	padding: 6rem 0 3rem;
}

.row__header span:last-child {
	grid-column: 1 / span 2;
}

.row__content {
	display: grid;
	width: 100%;
	grid-auto-flow: column;
	grid-gap: 1rem;
	justify-content: start;
}

.row__content-imgwrap {
	overflow: hidden;
	position: relative;
	border-radius: var(--radius-small);
}

.row__content-img {
	aspect-ratio: 2;
	height: 100px;
	background-size: cover;
	background-position: 50% 50%;
}

.row__content-imgwrap:nth-child(even) .row__content-img{
	aspect-ratio: 1;
}

.row__content-imgwrap:nth-child(4n) .row__content-img{
	aspect-ratio: 1.5;
}

.row__content-imgwrap:last-child {
	justify-content: end;
}

.row__content-imgwrap:last-child .row__content-img {
	aspect-ratio: 2.75;
}

.row + p {
	margin-top: 40vh;
}

@media screen and (min-width: 53em) {
	.frame {
		grid-template-columns: 15% 15% 1fr 15% 15%;
		grid-template-rows: auto;
		padding: 2rem 3rem;
		grid-template-areas: 'title prev nav sponsor sponsor';
		justify-content: start;
		grid-gap: 2rem;
		align-items: center;
		justify-items: start;
	}
	.frame__prev {
		justify-self: start;
	}
	.frame__demos {
		text-align: center;
		justify-self: center;
	}
	.section, 
	.row {
		font-size: 1.45rem;
	}
	.row__header {
		display: grid;
		grid-template-columns: 4ch auto 1fr;
		grid-template-rows: auto;
	}
	.row__header span:last-child {
		justify-self: end;
		grid-column: revert;
	}
}
src/index.html
파일 저장

<!DOCTYPE html>
<html lang="en" class="no-js">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>Scroll Panels | Demo 1 | Codrops</title>
		<meta name="description" content="A smooth scrolling design with fixed sections." />
		<meta name="keywords" content="smooth scrolling, layout, frontend, css, javascript, web design" />
		<meta name="author" content="Codrops" />
		<link rel="shortcut icon" href="favicon.ico">
		<link rel="stylesheet" href="https://use.typekit.net/lgy2swt.css">
		<link rel="stylesheet" type="text/css" href="css/base.css" />
		<script>document.documentElement.className="js";var supportsCssVars=function(){var e,t=document.createElement("style");return t.innerHTML="root: { --tmp-var: bold; }",document.head.appendChild(t),e=!!(window.CSS&&window.CSS.supports&&window.CSS.supports("font-weight","var(--tmp-var)")),t.parentNode.removeChild(t),e};supportsCssVars()||alert("Please view this demo in a modern browser that supports CSS Variables.");</script>
		
	</head>
	<body class="demo-1 loading">
		<main>
			<div class="frame">
				<div class="frame__title"> 
					<h1 class="frame__title-main">Scroll Panels</h1> 
					<a aria-label="Back to the article" class="frame__title-back" href="https://tympanus.net/codrops/?p=65387"> 
						<span class="oh__inner">Back to the article</span> 
						<svg width="18px" height="18px" viewBox="0 0 24 24"><path vector-effect="non-scaling-stroke" d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path>
						</svg>
					</a>
				</div>
				<a class="frame__prev" href="http://tympanus.net/Development/OnScrollViewSwitch/">Previous demo</a>
				<nav class="frame__demos">
					<h3 class="frame__demos-title">Effects</h3>
					<span class="frame__demos-item">01</span>
					<a class="frame__demos-item" href="index2.html">02</a>
					<a class="frame__demos-item" href="index3.html">03</a>
					<a class="frame__demos-item" href="index4.html">04</a>
					<a class="frame__demos-item" href="index5.html">05</a>
				</nav>
			</div>
			<section class="section section--intro">
				<h2 class="section__title">Charlotte <br> LaRue</h2>
				<p class="section__text">We think having capacity to choose gives us freedom. Choice is the very denial of freedom.</p>
				<p class="section__text section__text--alt">
					<span>Discover</span>
					<svg class="section__arrow" width="22px" height="22px" viewBox="0 0 24 24"><path vector-effect="non-scaling-stroke" d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path></svg>
					<span>Scroll</span>
				</p>
			</section>
			<section class="section section--columns">
				<div class="columns">
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/7.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/2.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/20.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/6.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/4.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/5.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/22.avif)"></div>
							</div>
						</div><!-- /column -->
					</div>
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/3.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/1.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/21.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
				</div><!-- columns -->
			</section>
			<section class="section section--showcase">
				<header class="section__header">
					<span class="section__year">2000</span>
					<h2 class="section__title section__title--medium">Selected <br> Work</h2>
					<span class="section__year">2022</span>
				</header>
				<div class="row">
					<div class="row__header">
						<span>2000</span>
						<span>Bocage's Secret</span>
						<span>My mind drifts to a place where I find you</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/8.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/9.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/19.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/17.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2002</span>
						<span>Coolista Website Redesign</span>
						<span>Can we kiss with poison on our lips?</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/11.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/12.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/13.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/1.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2010</span>
						<span>Running away</span>
						<span>Take off your clothes and take off your mask</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/14.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/15.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/16.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/4.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/2.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2012</span>
						<span>Verona</span>
						<span>It's not over now, I won't leave you in the dark</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/17.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/18.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/19.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/6.avif)"></div>
						</div>
					</div>
				</div>
				<p>Based on the effect seen on <a href="https://www.margotpriolet.com/">margotpriolet.com</a></p>
			</section>
		</main>
		<script type="module" src="js/index.js"></script>
	</body>
</html>
함께 쓰는 파일 13개 보기
src/index2.html
파일 저장

<!DOCTYPE html>
<html lang="en" class="no-js">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>Scroll Panels | Demo 2 | Codrops</title>
		<meta name="description" content="A smooth scrolling design with fixed sections." />
		<meta name="keywords" content="smooth scrolling, layout, frontend, css, javascript, web design" />
		<meta name="author" content="Codrops" />
		<link rel="shortcut icon" href="favicon.ico">
		<link rel="stylesheet" href="https://use.typekit.net/lgy2swt.css">
		<link rel="stylesheet" type="text/css" href="css/base.css" />
		<script>document.documentElement.className="js";var supportsCssVars=function(){var e,t=document.createElement("style");return t.innerHTML="root: { --tmp-var: bold; }",document.head.appendChild(t),e=!!(window.CSS&&window.CSS.supports&&window.CSS.supports("font-weight","var(--tmp-var)")),t.parentNode.removeChild(t),e};supportsCssVars()||alert("Please view this demo in a modern browser that supports CSS Variables.");</script>
		
	</head>
	<body class="demo-2 loading">
		<main>
			<div class="frame">
				<div class="frame__title"> 
					<h1 class="frame__title-main">Scroll Panels</h1> 
					<a aria-label="Back to the article" class="frame__title-back" href="https://tympanus.net/codrops/?p=65387"> 
						<span class="oh__inner">Back to the article</span> 
						<svg width="18px" height="18px" viewBox="0 0 24 24"><path vector-effect="non-scaling-stroke" d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path>
						</svg>
					</a>
				</div>
				<a class="frame__prev" href="http://tympanus.net/Development/OnScrollViewSwitch/">Previous demo</a>
				<nav class="frame__demos">
					<h3 class="frame__demos-title">Effects</h3>
					<a class="frame__demos-item" href="index.html">01</a>
					<span class="frame__demos-item">02</span>
					<a class="frame__demos-item" href="index3.html">03</a>
					<a class="frame__demos-item" href="index4.html">04</a>
					<a class="frame__demos-item" href="index5.html">05</a>
				</nav>
			</div>
			<section class="section section--intro">
				<h2 class="section__title">Charlotte <br> LaRue</h2>
				<p class="section__text">We think having capacity to choose gives us freedom. Choice is the very denial of freedom.</p>
				<p class="section__text section__text--alt">
					<span>Discover</span>
					<svg class="section__arrow" width="22px" height="22px" viewBox="0 0 24 24"><path vector-effect="non-scaling-stroke" d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path></svg>
					<span>Scroll</span>
				</p>
			</section>
			<section class="section section--columns">
				<div class="columns">
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/2.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/20.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/21.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/5.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/6.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/23.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/24.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/7.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/3.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/22.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/6.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/1.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/4.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/27.avif)"></div>
							</div>
						</div><!-- /column -->
					</div>
				</div><!-- columns -->
			</section>
			<section class="section section--showcase">
				<header class="section__header">
					<span class="section__year">2000</span>
					<h2 class="section__title section__title--medium">Selected <br> Work</h2>
					<span class="section__year">2022</span>
				</header>
				<div class="row">
					<div class="row__header">
						<span>2000</span>
						<span>Bocage's Secret</span>
						<span>My mind drifts to a place where I find you</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/8.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/9.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/19.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/17.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2002</span>
						<span>Coolista Website Redesign</span>
						<span>Can we kiss with poison on our lips?</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/11.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/12.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/13.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/1.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2010</span>
						<span>Running away</span>
						<span>Take off your clothes and take off your mask</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/14.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/15.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/16.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/4.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/2.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2012</span>
						<span>Verona</span>
						<span>It's not over now, I won't leave you in the dark</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/17.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/18.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/19.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/6.avif)"></div>
						</div>
					</div>
				</div>
				<p>Based on the effect seen on <a href="https://www.margotpriolet.com/">margotpriolet.com</a></p>
			</section>
		</main>
		<script type="module" src="js/index2.js"></script>
	</body>
</html>
src/index3.html
파일 저장

<!DOCTYPE html>
<html lang="en" class="no-js">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>Scroll Panels | Demo 3 | Codrops</title>
		<meta name="description" content="A smooth scrolling design with fixed sections." />
		<meta name="keywords" content="smooth scrolling, layout, frontend, css, javascript, web design" />
		<meta name="author" content="Codrops" />
		<link rel="shortcut icon" href="favicon.ico">
		<link rel="stylesheet" href="https://use.typekit.net/lgy2swt.css">
		<link rel="stylesheet" type="text/css" href="css/base.css" />
		<script>document.documentElement.className="js";var supportsCssVars=function(){var e,t=document.createElement("style");return t.innerHTML="root: { --tmp-var: bold; }",document.head.appendChild(t),e=!!(window.CSS&&window.CSS.supports&&window.CSS.supports("font-weight","var(--tmp-var)")),t.parentNode.removeChild(t),e};supportsCssVars()||alert("Please view this demo in a modern browser that supports CSS Variables.");</script>
		
	</head>
	<body class="demo-3 loading">
		<main>
			<div class="frame">
				<div class="frame__title"> 
					<h1 class="frame__title-main">Scroll Panels</h1> 
					<a aria-label="Back to the article" class="frame__title-back" href="https://tympanus.net/codrops/?p=65387"> 
						<span class="oh__inner">Back to the article</span> 
						<svg width="18px" height="18px" viewBox="0 0 24 24"><path vector-effect="non-scaling-stroke" d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path>
						</svg>
					</a>
				</div>
				<a class="frame__prev" href="http://tympanus.net/Development/OnScrollViewSwitch/">Previous demo</a>
				<nav class="frame__demos">
					<h3 class="frame__demos-title">Effects</h3>
					<a class="frame__demos-item" href="index.html">01</span>
					<a class="frame__demos-item" href="index2.html">02</a>
					<span class="frame__demos-item">03</span>
					<a class="frame__demos-item" href="index4.html">04</a>
					<a class="frame__demos-item" href="index5.html">05</a>
				</nav>
			</div>
			<section class="section section--intro">
				<h2 class="section__title">Charlotte <br> LaRue</h2>
				<p class="section__text">We think having capacity to choose gives us freedom. Choice is the very denial of freedom.</p>
				<p class="section__text section__text--alt">
					<span>Discover</span>
					<svg class="section__arrow" width="22px" height="22px" viewBox="0 0 24 24"><path vector-effect="non-scaling-stroke" d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path></svg>
					<span>Scroll</span>
				</p>
			</section>
			<section class="section section--columns">
				<div class="columns">
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/27.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/26.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/25.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/1.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/24.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/23.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/22.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/21.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/4.avif)"></div>
							</div>
						</div><!-- /column -->
					</div>
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/20.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/1.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/2.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/3.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
				</div><!-- columns -->
			</section>
			<section class="section section--showcase">
				<header class="section__header">
					<span class="section__year">2000</span>
					<h2 class="section__title section__title--medium">Selected <br> Work</h2>
					<span class="section__year">2022</span>
				</header>
				<div class="row">
					<div class="row__header">
						<span>2000</span>
						<span>Bocage's Secret</span>
						<span>My mind drifts to a place where I find you</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/8.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/9.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/19.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/17.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2002</span>
						<span>Coolista Website Redesign</span>
						<span>Can we kiss with poison on our lips?</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/11.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/12.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/13.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/1.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2010</span>
						<span>Running away</span>
						<span>Take off your clothes and take off your mask</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/14.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/15.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/16.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/4.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/2.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2012</span>
						<span>Verona</span>
						<span>It's not over now, I won't leave you in the dark</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/17.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/18.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/19.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/6.avif)"></div>
						</div>
					</div>
				</div>
				<p>Based on the effect seen on <a href="https://www.margotpriolet.com/">margotpriolet.com</a></p>
			</section>
		</main>
		<script type="module" src="js/index3.js"></script>
	</body>
</html>
src/index4.html
파일 저장

<!DOCTYPE html>
<html lang="en" class="no-js">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>Scroll Panels | Demo 4 | Codrops</title>
		<meta name="description" content="A smooth scrolling design with fixed sections." />
		<meta name="keywords" content="smooth scrolling, layout, frontend, css, javascript, web design" />
		<meta name="author" content="Codrops" />
		<link rel="shortcut icon" href="favicon.ico">
		<link rel="stylesheet" href="https://use.typekit.net/lgy2swt.css">
		<link rel="stylesheet" type="text/css" href="css/base.css" />
		<script>document.documentElement.className="js";var supportsCssVars=function(){var e,t=document.createElement("style");return t.innerHTML="root: { --tmp-var: bold; }",document.head.appendChild(t),e=!!(window.CSS&&window.CSS.supports&&window.CSS.supports("font-weight","var(--tmp-var)")),t.parentNode.removeChild(t),e};supportsCssVars()||alert("Please view this demo in a modern browser that supports CSS Variables.");</script>
		
	</head>
	<body class="demo-4 loading">
		<main>
			<div class="frame">
				<div class="frame__title"> 
					<h1 class="frame__title-main">Scroll Panels</h1> 
					<a aria-label="Back to the article" class="frame__title-back" href="https://tympanus.net/codrops/?p=65387"> 
						<span class="oh__inner">Back to the article</span> 
						<svg width="18px" height="18px" viewBox="0 0 24 24"><path vector-effect="non-scaling-stroke" d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path>
						</svg>
					</a>
				</div>
				<a class="frame__prev" href="http://tympanus.net/Development/OnScrollViewSwitch/">Previous demo</a>
				<nav class="frame__demos">
					<h3 class="frame__demos-title">Effects</h3>
					<a class="frame__demos-item" href="index.html">01</span>
					<a class="frame__demos-item" href="index2.html">02</a>
					<a class="frame__demos-item" href="index3.html">03</a>
					<span class="frame__demos-item">04</span>
					<a class="frame__demos-item" href="index5.html">05</a>
				</nav>
			</div>
			<section class="section section--intro">
				<h2 class="section__title">Charlotte <br> LaRue</h2>
				<p class="section__text">We think having capacity to choose gives us freedom. Choice is the very denial of freedom.</p>
				<p class="section__text section__text--alt">
					<span>Discover</span>
					<svg class="section__arrow" width="22px" height="22px" viewBox="0 0 24 24"><path vector-effect="non-scaling-stroke" d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path></svg>
					<span>Scroll</span>
				</p>
			</section>
			<section class="section section--columns">
				<div class="columns">
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/1.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/2.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/3.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/6.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/7.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/27.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/26.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/20.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/21.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/22.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/5.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/25.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/26.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/27.avif)"></div>
							</div>
						</div><!-- /column -->
					</div>
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/4.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/1.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/24.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/7.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/21.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/22.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/23.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/24.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/25.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
				</div><!-- columns -->
			</section>
			<section class="section section--showcase">
				<header class="section__header">
					<span class="section__year">2000</span>
					<h2 class="section__title section__title--medium">Selected <br> Work</h2>
					<span class="section__year">2022</span>
				</header>
				<div class="row">
					<div class="row__header">
						<span>2000</span>
						<span>Bocage's Secret</span>
						<span>My mind drifts to a place where I find you</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/8.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/9.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/19.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/17.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2002</span>
						<span>Coolista Website Redesign</span>
						<span>Can we kiss with poison on our lips?</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/11.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/12.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/13.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/1.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2010</span>
						<span>Running away</span>
						<span>Take off your clothes and take off your mask</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/14.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/15.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/16.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/4.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/2.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2012</span>
						<span>Verona</span>
						<span>It's not over now, I won't leave you in the dark</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/17.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/18.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/19.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/6.avif)"></div>
						</div>
					</div>
				</div>
				<p>Based on the effect seen on <a href="https://www.margotpriolet.com/">margotpriolet.com</a></p>
			</section>
		</main>
		<script type="module" src="js/index4.js"></script>
	</body>
</html>
src/index5.html
파일 저장

<!DOCTYPE html>
<html lang="en" class="no-js">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>Scroll Panels | Demo 5 | Codrops</title>
		<meta name="description" content="A smooth scrolling design with fixed sections." />
		<meta name="keywords" content="smooth scrolling, layout, frontend, css, javascript, web design" />
		<meta name="author" content="Codrops" />
		<link rel="shortcut icon" href="favicon.ico">
		<link rel="stylesheet" href="https://use.typekit.net/lgy2swt.css">
		<link rel="stylesheet" type="text/css" href="css/base.css" />
		<script>document.documentElement.className="js";var supportsCssVars=function(){var e,t=document.createElement("style");return t.innerHTML="root: { --tmp-var: bold; }",document.head.appendChild(t),e=!!(window.CSS&&window.CSS.supports&&window.CSS.supports("font-weight","var(--tmp-var)")),t.parentNode.removeChild(t),e};supportsCssVars()||alert("Please view this demo in a modern browser that supports CSS Variables.");</script>
		
	</head>
	<body class="demo-5 loading">
		<main>
			<div class="frame">
				<div class="frame__title"> 
					<h1 class="frame__title-main">Scroll Panels</h1> 
					<a aria-label="Back to the article" class="frame__title-back" href="https://tympanus.net/codrops/?p=65387"> 
						<span class="oh__inner">Back to the article</span> 
						<svg width="18px" height="18px" viewBox="0 0 24 24"><path vector-effect="non-scaling-stroke" d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path>
						</svg>
					</a>
				</div>
				<a class="frame__prev" href="http://tympanus.net/Development/OnScrollViewSwitch/">Previous demo</a>
				<nav class="frame__demos">
					<h3 class="frame__demos-title">Effects</h3>
					<a class="frame__demos-item" href="index.html">01</span>
					<a class="frame__demos-item" href="index2.html">02</a>
					<a class="frame__demos-item" href="index3.html">03</a>
					<a class="frame__demos-item" href="index4.html">04</a>
					<span class="frame__demos-item">05</span>
				</nav>
			</div>
			<section class="section section--intro">
				<h2 class="section__title">Charlotte <br> LaRue</h2>
				<p class="section__text">We think having capacity to choose gives us freedom. Choice is the very denial of freedom.</p>
				<p class="section__text section__text--alt">
					<span>Discover</span>
					<svg class="section__arrow" width="22px" height="22px" viewBox="0 0 24 24"><path vector-effect="non-scaling-stroke" d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path></svg>
					<span>Scroll</span>
				</p>
			</section>
			<section class="section section--columns">
				<div class="columns">
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/21.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/7.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/2.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/6.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/4.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/5.avif)"></div>
							</div>
						</div><!-- /column -->
					</div>
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/27.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/3.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/1.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
					<div class="column-wrap">
						<div class="column">
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/26.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/25.avif)"></div>
							</div>
							<div class="column__item">
								<div class="column__item-img" style="background-image:url(img/23.avif)"></div>
							</div>
						</div><!-- /column -->
					</div><!-- /column-wrap -->
				</div><!-- columns -->
			</section>
			<section class="section section--showcase">
				<header class="section__header">
					<span class="section__year">2000</span>
					<h2 class="section__title section__title--medium">Selected <br> Work</h2>
					<span class="section__year">2022</span>
				</header>
				<div class="row">
					<div class="row__header">
						<span>2000</span>
						<span>Bocage's Secret</span>
						<span>My mind drifts to a place where I find you</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/8.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/9.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/19.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/17.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2002</span>
						<span>Coolista Website Redesign</span>
						<span>Can we kiss with poison on our lips?</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/11.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/12.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/13.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/1.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2010</span>
						<span>Running away</span>
						<span>Take off your clothes and take off your mask</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/14.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/15.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/16.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/4.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/2.avif)"></div>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="row__header">
						<span>2012</span>
						<span>Verona</span>
						<span>It's not over now, I won't leave you in the dark</span>
					</div>
					<div class="row__content">
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/17.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/18.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/19.avif)"></div>
						</div>
						<div class="row__content-imgwrap">
							<div class="row__content-img" style="background-image:url(img/6.avif)"></div>
						</div>
					</div>
				</div>
				<p>Based on the effect seen on <a href="https://www.margotpriolet.com/">margotpriolet.com</a></p>
			</section>
		</main>
		<script type="module" src="js/index5.js"></script>
	</body>
</html>
src/js/index.js
파일 저장

import { preloadImages } from './utils';
import Lenis from '@studio-freight/lenis'
import { gsap } from 'gsap';
import { ScrollTrigger } from 'gsap/ScrollTrigger';
gsap.registerPlugin(ScrollTrigger);

const DOM = {
    sections: {
        columns: document.querySelector('.section--columns'),
        showcase: document.querySelector('.section--showcase'),
    },
    columns: document.querySelectorAll('.section--columns > .columns'),
    columnWraps: document.querySelectorAll('.section--columns .column-wrap'),
    itemsWrappers: document.querySelectorAll('.section--columns .column-wrap .column'),
    items: document.querySelectorAll('.section--columns .column__item'),
    images: document.querySelectorAll('.section--columns .column__item-img'),
};

// Lenis smooth scrolling
let lenis;

// Initialize Lenis smooth scrolling
const initSmoothScrolling = () => {
	lenis = new Lenis({
		lerp: 0.2,
		smooth: true,
	});
	const scrollFn = (time) => {
		lenis.raf(time);
		requestAnimationFrame(scrollFn);
	};
	requestAnimationFrame(scrollFn);
};

// GSAP Scroll Triggers
const scroll = () => {
    gsap.timeline({
        scrollTrigger: {
            start: 0,
            end: 'max',
            scrub: true
        }
    })
    .addLabel('start', 0)
    .to(DOM.sections.columns, {
        ease: 'none',
        startAt: {scale: 1.1},
        scale: 1,
    }, 'start')
    .to(DOM.sections.columns, {
        scrollTrigger: {
            trigger: DOM.sections.showcase,
            start: 0,
            end: 'top top',
            scrub: true
        },
        ease: 'power4.inOut',
        startAt: {
            opacity: 0.2,
        },
        opacity: 1,
        // repeat once (go back to "startAt" values)
        yoyo: true,
        repeat: 1
    }, 'start')
    .to(DOM.columnWraps, {
        ease: 'none',
        yPercent: pos => pos%2 ? 3 : -3
    }, 'start')
};

// Preload images
preloadImages('.column__item-img').then(() => {
    document.body.classList.remove('loading');
    // Lenis (smooth scrolling)
    initSmoothScrolling();
    // GSAP Scroll Triggers
    scroll();
});
src/js/index2.js
파일 저장

import { preloadImages, getTranslationDistance } from './utils';
import Lenis from '@studio-freight/lenis'
import { gsap } from 'gsap';
import { ScrollTrigger } from 'gsap/ScrollTrigger';
gsap.registerPlugin(ScrollTrigger);

const DOM = {
    sections: {
        columns: document.querySelector('.section--columns'),
        showcase: document.querySelector('.section--showcase'),
    },
    columns: document.querySelectorAll('.section--columns > .columns'),
    columnWraps: document.querySelectorAll('.section--columns .column-wrap'),
    itemsWrappers: document.querySelectorAll('.section--columns .column-wrap .column'),
    items: document.querySelectorAll('.section--columns .column__item'),
    images: document.querySelectorAll('.section--columns .column__item-img'),
};

// Lenis smooth scrolling
let lenis;

// Initialize Lenis smooth scrolling
const initSmoothScrolling = () => {
	lenis = new Lenis({
		lerp: 0.2,
		smooth: true,
	});
	const scrollFn = (time) => {
		lenis.raf(time);
		requestAnimationFrame(scrollFn);
	};
	requestAnimationFrame(scrollFn);
};

// GSAP Scroll Triggers
const scroll = () => {
    gsap.timeline({
        scrollTrigger: {
            start: 0,
            end: 'max',
            scrub: true
        }
    })
    .addLabel('start', 0)
    .to(DOM.sections.columns, {
        ease: 'none',
        startAt: {scale: .7},
        scale: 1,
    }, 'start')
    .to(DOM.sections.columns, {
        scrollTrigger: {
            trigger: DOM.sections.showcase,
            start: 0,
            end: 'top top',
            scrub: true
        },
        ease: 'power4.inOut',
        startAt: {
            opacity: 0.2,
        },
        opacity: 1,
        // repeat once (go back to "startAt" values)
        yoyo: true,
        repeat: 1
    }, 'start')
    .to(DOM.images, {
        ease: 'none',
        scale: 1.4,
    }, 'start')

    .to(DOM.items, {
        scrollTrigger: {
            trigger: DOM.sections.showcase,
            start: 0,
            end: 'top top',
            scrub: true
        },
        ease: 'none',
        x: (pos, target) => {
            return getTranslationDistance(target, 600)['x'];
        },
        y: (pos, target) => {
            return getTranslationDistance(target, 600)['y'];
        },
    }, 'start')
};

// Preload images
preloadImages('.column__item-img').then(() => {
    document.body.classList.remove('loading');
    // Lenis (smooth scrolling)
    initSmoothScrolling();
    // GSAP Scroll Triggers
    scroll();
});
src/js/index3.js
파일 저장

import { preloadImages } from './utils';
import Lenis from '@studio-freight/lenis'
import { gsap } from 'gsap';
import { ScrollTrigger } from 'gsap/ScrollTrigger';
gsap.registerPlugin(ScrollTrigger);

const DOM = {
    sections: {
        columns: document.querySelector('.section--columns'),
        showcase: document.querySelector('.section--showcase'),
    },
    columns: document.querySelectorAll('.section--columns > .columns'),
    columnWraps: document.querySelectorAll('.section--columns .column-wrap'),
    itemsWrappers: document.querySelectorAll('.section--columns .column-wrap .column'),
    items: document.querySelectorAll('.section--columns .column__item'),
    images: document.querySelectorAll('.section--columns .column__item-img'),
};

// Lenis smooth scrolling
let lenis;

// Initialize Lenis smooth scrolling
const initSmoothScrolling = () => {
	lenis = new Lenis({
		lerp: 0.2,
		smooth: true,
	});
	const scrollFn = (time) => {
		lenis.raf(time);
		requestAnimationFrame(scrollFn);
	};
	requestAnimationFrame(scrollFn);
};

// GSAP Scroll Triggers
const scroll = () => {
    gsap.timeline({
        scrollTrigger: {
            start: 0,
            end: 'max',
            scrub: true
        }
    })
    .addLabel('start', 0)
    .to(DOM.sections.columns, {
        ease: 'none',
        startAt: {scale: 0.8},
        scale: 1,
    }, 'start')
    .to(DOM.items, {
        scrollTrigger: {
            trigger: DOM.sections.showcase,
            start: 0,
            end: 'top top',
            scrub: true
        },
        ease: 'power4.inOut',
        startAt: {
            filter: 'grayscale(100%)'
        },
        filter: 'grayscale(0%) ',
        // repeat once (go back to "startAt" values)
        yoyo: true,
        repeat: 1
    }, 'start')
    .to(DOM.columnWraps, {
        ease: 'none',
        yPercent: pos => pos%2 ? 10 : -10
    }, 'start')
    .to(DOM.images, {
        ease: 'none',
        scale: 3,
    }, 'start')
};

// Preload images
preloadImages('.column__item-img').then(() => {
    document.body.classList.remove('loading');
    // Lenis (smooth scrolling)
    initSmoothScrolling();
    // GSAP Scroll Triggers
    scroll();
});
src/js/index4.js
파일 저장

import { preloadImages } from './utils';
import Lenis from '@studio-freight/lenis'
import { gsap } from 'gsap';
import { ScrollTrigger } from 'gsap/ScrollTrigger';
gsap.registerPlugin(ScrollTrigger);

const DOM = {
    sections: {
        columns: document.querySelector('.section--columns'),
        showcase: document.querySelector('.section--showcase'),
    },
    columns: document.querySelectorAll('.section--columns > .columns'),
    columnWraps: document.querySelectorAll('.section--columns .column-wrap'),
    itemsWrappers: document.querySelectorAll('.section--columns .column-wrap .column'),
    items: document.querySelectorAll('.section--columns .column__item'),
    images: document.querySelectorAll('.section--columns .column__item-img'),
};

// Lenis smooth scrolling
let lenis;

// Initialize Lenis smooth scrolling
const initSmoothScrolling = () => {
	lenis = new Lenis({
		lerp: 0.2,
		smooth: true,
	});
	const scrollFn = (time) => {
		lenis.raf(time);
		requestAnimationFrame(scrollFn);
	};
	requestAnimationFrame(scrollFn);
};

// GSAP Scroll Triggers
const scroll = () => {
    gsap.timeline({
        scrollTrigger: {
            start: 0,
            end: 'max',
            scrub: true
        }
    })
    .addLabel('start', 0)
    /*
    .to(DOM.sections.columns, {
        ease: 'none',
        startAt: {scale: 1.2},
        scale: 1,
    }, 'start')
    */
    .to(DOM.items, {
        scrollTrigger: {
            trigger: DOM.sections.showcase,
            start: 0,
            end: 'top top',
            scrub: true
        },
        ease: 'power4.inOut',
        startAt: {
            opacity: 0,
            filter: 'brightness(300%)'
        },
        opacity: 1,
        filter: 'brightness(100%)',
        // repeat once (go back to "startAt" values)
        yoyo: true,
        repeat: 1
    }, 'start')
    .to(DOM.columnWraps, {
        ease: 'none',
        yPercent: pos => pos*-15-15
    }, 'start')
};

// Preload images
preloadImages('.column__item-img').then(() => {
    document.body.classList.remove('loading');
    // Lenis (smooth scrolling)
    initSmoothScrolling();
    // GSAP Scroll Triggers
    scroll();
});
src/js/index5.js
파일 저장

import { preloadImages, getTranslationDistance } from './utils';
import Lenis from '@studio-freight/lenis'
import { gsap } from 'gsap';
import { ScrollTrigger } from 'gsap/ScrollTrigger';
gsap.registerPlugin(ScrollTrigger);

const DOM = {
    sections: {
        columns: document.querySelector('.section--columns'),
        showcase: document.querySelector('.section--showcase'),
    },
    columns: document.querySelectorAll('.section--columns > .columns'),
    columnWraps: document.querySelectorAll('.section--columns .column-wrap'),
    itemsWrappers: document.querySelectorAll('.section--columns .column-wrap .column'),
    items: document.querySelectorAll('.section--columns .column__item'),
    images: document.querySelectorAll('.section--columns .column__item-img'),
};

// Lenis smooth scrolling
let lenis;

// Initialize Lenis smooth scrolling
const initSmoothScrolling = () => {
	lenis = new Lenis({
		lerp: 0.2,
		smooth: true,
	});
	const scrollFn = (time) => {
		lenis.raf(time);
		requestAnimationFrame(scrollFn);
	};
	requestAnimationFrame(scrollFn);
};

// GSAP Scroll Triggers
const scroll = () => {
    gsap.timeline({
        scrollTrigger: {
            start: 0,
            end: 'max',
            scrub: true
        }
    })
    .addLabel('start', 0)
    .to(DOM.sections.columns, {
        ease: 'none',
        startAt: {scale: .7},
        scale: 1,
    }, 'start')
    .to(DOM.images, {
        ease: 'none',
        scale: 1.4,
    }, 'start')

    .set(DOM.itemsWrappers, {perspective: 1000}, 'start')
    .to(DOM.items, {
        scrollTrigger: {
            trigger: DOM.sections.showcase,
            start: 0,
            end: 'top top',
            scrub: true
        },
        ease: 'none',
        startAt: {
            rotationX: () => gsap.utils.random(20,30),
            x: (pos, target) => {
                return getTranslationDistance(target)['x'];
            },
            y: (pos, target) => {
                return getTranslationDistance(target)['y'];
            },
            filter: 'blur(6px)'
        },
        x: 0,
        y: 0,
        rotationX: 0,
        rotationY: 0,
        filter: 'blur(0px)'
    }, 'start')
};

// Preload images
preloadImages('.column__item-img').then(() => {
    document.body.classList.remove('loading');
    // Lenis (smooth scrolling)
    initSmoothScrolling();
    // GSAP Scroll Triggers
    scroll();
});
src/js/utils.js
파일 저장

const imagesLoaded = require('imagesloaded');

/**
 * Preload images
 * @param {String} selector - Selector/scope from where images need to be preloaded. Default is 'img'
 */
const preloadImages = (selector = 'img') => {
    return new Promise((resolve) => {
        imagesLoaded(document.querySelectorAll(selector), {background: true}, resolve);
    });
};

/**
 * Map number x from range [a, b] to [c, d] 
 * @param {Number} x - changing value
 * @param {Number} a 
 * @param {Number} b
 * @param {Number} c
 * @param {Number} d
 */
 const map = (x, a, b, c, d) => (x - a) * (d - c) / (b - a) + c;
 
/** 
 * Calculates how much (x and y) the element1 needs to move away from the center of the screen for a distance of [spread]px
 * @param {Element} element1
 * @param {JSON} position
 * @param {Number} spread - The maximum distance the element1 could have from element2. This will depend on how far the elements are from each other. The closer they are, the higher the returned values. If the distance equals or is higher than [maxDistance] then the return value will be {0,0}
 * @param {Number} maxDistance - The maximum distance for a possible translation to occur
 * @returns {JSON} the x,y translation values
 */
 const getTranslationDistance = (element1, spread = 400, maxDistance = 5000) => {
    const winsize = {width: window.innerWidth, height: window.innerHeight}
    const rect = element1.getBoundingClientRect();
    const elCenter = {x: rect.left + element1.offsetWidth/2, y: rect.top + element1.offsetHeight/2};
    const win = {x: winsize.width/2, y: winsize.height/2};

    spread = Math.max( map(getDistanceToCenter(element1), 0, maxDistance, spread, 0) , 0);
    
    const angle = Math.atan2(Math.abs(win.y - elCenter.y), Math.abs(win.x - elCenter.x));

    let x = Math.abs(Math.cos(angle) * spread);
    let y = Math.abs(Math.sin(angle) * spread);

    return {
        x: elCenter.x < win.x ? x*-1 : x,
        y: elCenter.y < win.y ? y*-1 : y
    };
};

/**
 * Gets the distance between the element and the center of the viewport
 * @param {Element} element1
 * @returns {Number} The distance value
 */
 const getDistanceToCenter = (element1) => {
    const winsize = {width: window.innerWidth, height: window.innerHeight}
    const elCenter = {x: element1.offsetLeft + element1.offsetWidth/2, y: element1.offsetTop + element1.offsetHeight/2};
    const wincenter = {x:winsize.width/2, y: winsize.height/2};
    return Math.hypot(elCenter.x - wincenter.x, elCenter.y - wincenter.y);
}

export {
    preloadImages,
    map,
    getTranslationDistance,
    getDistanceToCenter,
};
Media credits and license evidence실행 안내·자료
파일 저장

README.md
## Credits

- Images from [Unsplash](https://unsplash.com/)


## License
[MIT](LICENSE)

Made with :blue_heart:  by [Codrops](http://www.codrops.com)
LICENSE실행 안내·자료
파일 저장

MIT License

Copyright (c) 2009 - 2021 [Codrops](https://tympanus.net/codrops)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Bundled dependency licenses실행 안내·자료
파일 저장

GSAP standard license snapshot
Source: https://gsap.com/community/standard-license/
Retrieved: 2026-09-22T04:22:49.089Z
Original distribution copyright and version headers remain in the runtime code.

Standard "No Charge" GSAP License

 I. DEFINITIONS

 “GSAP License” means the terms and conditions of this GSAP Software License Agreement.

 "GSAP Products" means any Software made available at gsap.com (https://gsap.com) or any successor sites, including but not limited to the GSAP animation library and related plugins, tools, or extensions.

 "Permitted Uses" means the implementation and/or use of GSAP Products on any website, web application, or digital interface by any person or entity (which may include, for clarity, those of companies that compete with Webflow in other areas of business).

 "Prohibited Uses" means any implementation and/or use of GSAP Products in tools that allow users to build visual animations without code that encourages, induces, or materially assists in creating a solution that competes with Webflow’s visual animation building capabilities.

 "Competitive Products" means any software, tool, or service that enables users to create, edit, or manage animations through a visual interface or builder similar to Webflow (https://webflow.com).

 II. GRANT OF LICENSE

 Subject to the terms and conditions of this GSAP License, Webflow grants you a non-exclusive, worldwide license to use, reproduce, display, and implement GSAP Products solely for Permitted Uses.

 III. RESTRICTIONS

 You may not:

 Use any GSAP Products for any Prohibited Uses without prior written consent;

 Reverse engineer any GSAP Products for the purpose of creating Competitive Products;

 Remove or alter any proprietary notices or branding from GSAP Products.

 IV. OWNERSHIP AND INTELLECTUAL PROPERTY

 All intellectual property rights in GSAP Products, including but not limited to copyright, patents, trademarks, and trade secrets, remain the exclusive property of Webflow. This GSAP License does not transfer any ownership rights in GSAP Products to you.

 V. TERMINATION

 Webflow may terminate this GSAP License and revoke your access in its discretion if you fail to comply with any of these terms and conditions. Upon termination, you must cease all use of GSAP Products and destroy all copies in your possession.

 VI. MISCELLANEOUS PROVISIONS

 General: This GSAP License is incorporated into and subject to Webflow’s Terms of Service available here (https://webflow.com/legal/terms) ("Terms of Service"). In the event of any conflict or inconsistency between this GSAP License and the Terms of Service, the terms of this GSAP License shall govern in relation to your use of any GSAP Products.

 Amendments: Webflow reserves the right to update or modify this GSAP License at any time by posting the revised terms on this website, provided that any such updates or modifications shall not result in any material degradation to the security, integrity, or functionality of any GSAP Products. You understand and agree that your continued use of any GSAP Products after such revisions to this GSAP License constitutes your acceptance of this GSAP License as revised. If you do not accept the revised GSAP License, you are prohibited from using versions of the GSAP Products released after the effective date of the revised GSAP License (as well as any updates made to previous versions). Notwithstanding, you may continue using previous versions of GSAP Products under the applicable terms licensed to you prior to the effective date of the revised GSAP License (for clarity, excluding any updates made thereto).

 No Waiver: Failure of Webflow to enforce any provision of this GSAP License shall not constitute a waiver of future enforcement of that or any other provision.

 FAQ

 Is it acceptable for AI tools like ChatGPT, Cursor, Lovable, Webstudio, etc. to generate GSAP code?
 Absolutely! AI-generated code is not a "Prohibited Use".

 What if a WordPress plugin or theme or other niche tool allows users to create GSAP-driven effects through a visual interface? Is that prohibited?
 We want to encourage developers to build on top of GSAP, including visual tools that don't directly compete with Webflow's rich animation-building capabilities. If you are not sure if your product might be considered a "Prohibited Use", feel free to contact us (https://gsap.com/contact) so we can talk through it!

 Can I really use GSAP in commercial projects without paying anything?
 Yes, really! Commercial usage is covered under the standard license. All of GSAP including the plugins that were formerly "members-only" like SplitText (https://gsap.com/docs/v3/Plugins/SplitText/) and MorphSVG (https://gsap.com/docs/v3/Plugins/MorphSVGPlugin) can be used in commercial projects at no charge. Enjoy! 💚

 Effective date: April 30, 2025

 Last modified date: May 30, 2025

 Copyright (©) 2025, Webflow


ev-emitter@2.1.2 — LICENSE.md
Copyright (c) 2016-2021 [David DeSandro](https://desandro.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


imagesloaded@5.0.0 — LICENSE.md
Copyright (c) 2011-2022 [David DeSandro](https://desandro.com) and [contributors](https://github.com/desandro/imagesloaded/graphs/contributors)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


tiny-emitter@2.1.0 — LICENSE
The MIT License (MIT)

Copyright (c) 2017 Scott Corgan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.



virtual-scroll@2.2.1 — LICENSE
The MIT License (MIT)

Copyright (c) 2014 Florian Morel

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.