728x90
반응형
마우스 이펙트 - 마우스 따라다니기 (GSAP)
포인터의 좌표값에 따라서 마우스의 움직임과 효과가 있는 마우스 이펙트를 GSAP를 이용하여 만들어 봅시다. (GSAP 라이브러리를 스크립트에 추가해서 진행합니다.)
html
두개의 원을 만들어줄것이기에, mouse__cursor, mouse__cursor2를 생성합니다.
코드보기
<section id="mouseType">
<div class="mouse__cursor"></div>
<div class="mouse__cursor2"></div>
<div class="mouse__wrap">
<p><span class="style1">Victory</span> belongs to the most persevering.
</p>
<p><span>승리</span>는 가장 끈기있는 자에게 돌아간다.</p>
</div>
</section>
css
커서의 크기와 효과 등을 부여.
pointer-events: none = 요소가 포인터 이벤트의 대상이 되지 않습니다.
user-select: none = 사용자가 텍스트를 선택할 수 없게 지정합니다.
코드보기
/* mouseType */
.mouse__wrap {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: #fff;
overflow: hidden;
cursor: none;
}
.mouse__wrap p {
font-size: 2vw;
line-height: 2;
font-weight: 300;
}
.mouse__wrap p:last-child {
font-size: 3vw;
font-weight: 300;
}
.mouse__wrap p span {
border-bottom: 0.15vw dashed blue;
color: blue;
}
@media (max-width: 800px) {
.mouse__wrap p {
padding: 0 20px;
font-size: 24px;
line-height: 1.5;
text-align: center;
margin-bottom: 10px;
}
.mouse__wrap p:last-child {
font-size: 40px;
line-height: 1.5;
text-align: center;
word-break: keep-all;
}
}
.mouse__cursor {
position: absolute;
left: 0;
top: 0;
width: 10px;
height: 10px;
z-index: 9999;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
user-select: none;
pointer-events: none;
transition: transform 0.3s, opactiy 0.2s;
}
.mouse__cursor2 {
position: absolute;
left: 0;
top: 0;
width: 30px;
height: 30px;
z-index: 9998;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
user-select: none;
pointer-events: none;
transition: transform 0.3s, opactiy 0.2s;
}
.mouse__cursor.active {
transform: scale(0);
}
.mouse__cursor2.active {
transform: scale(10);
background: rgba(255, 166, 0, 0.6);
}
.mouse__cursor.active {
transform: scale(0);
}
.mouse__cursor2.active {
transform: scale(10);
background: rgba(255, 166, 0, 0.6);
}
.mouse__cursor.active2 {
transform: scale(0);
}
.mouse__cursor2.active2 {
transform: scale(10) rotateY(720deg);
background: rgba(255, 166, 0, 0.6);
}
.mouse__cursor.active3 {
transform: scale(0);
}
.mouse__cursor2.active3 {
transform: scale(10) rotateX(545deg);
background: rgba(255, 166, 0, 0.6);
}
js
선택자를 생성 후 GSAP로 cursor, cursor2의 좌표값을 할당합니다. 마우스가 올라가면 active가 추가, 떠날경우 지워집니다.
mouseenter / mouseover 지정된 요소와 자식 요소도 포함. mouseenter / mouseleave 지정된 요소만 이벤트 적용.
const cursor = document.querySelector(".mouse__cursor");
const cursor2 = document.querySelector(".mouse__cursor2");
const span = document.querySelectorAll(".mouse__wrap span");
const header = document.querySelectorAll("#header ul li a");
const btn = document.querySelectorAll(".modal__btn");
window.addEventListener("mousemove", e => {
// 커서 좌표값 할당
// cursor.style.left = e.pageX - 5 + "px";
// cursor.style.top = e.pageY - 5 + "px";
// cursor2.style.left = e.pageX - 15 + "px";
// cursor2.style.top = e.pageY - 15 + "px";
// GSAP
gsap.to(cursor, { duration: 0.3, left: e.pageX - 5, top: e.pageY - 5 });
gsap.to(cursor2, { duration: 0.8, left: e.pageX - 15, top: e.pageY - 15 });
// 오버 효과
// mouseenter / mouseover / 이벤트 버블링
//화살표 함수에서는 this 사용X
span.forEach(span => {
span.addEventListener("mouseenter", () => {
cursor.classList.add("active");
cursor2.classList.add("active");
});
span.addEventListener("mouseleave", () => {
cursor.classList.remove("active");
cursor2.classList.remove("active");
});
});
header.forEach(header => {
header.addEventListener("mouseenter", () => {
cursor.classList.add("active2");
cursor2.classList.add("active2");
});
header.addEventListener("mouseleave", () => {
cursor.classList.remove("active2");
cursor2.classList.remove("active2");
});
});
btn.forEach(btn => {
btn.addEventListener("mouseenter", () => {
cursor.classList.add("active3");
cursor2.classList.add("active3");
});
btn.addEventListener("mouseleave", () => {
cursor.classList.remove("active3");
cursor2.classList.remove("active3");
});
});
});
728x90
반응형
'Effect' 카테고리의 다른 글
sliderEffect04 (3) | 2022.09.16 |
---|---|
parallaxEffect04 (4) | 2022.09.16 |
parallaxEffect03 (1) | 2022.09.09 |
parallaxEffect02 (4) | 2022.09.08 |
ParallaxEffect01 (11) | 2022.09.06 |