728x90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="bg"></div>
<div class="circle"></div>
<script>
const bg = document.querySelector('.bg')
const circle = document.querySelector('.circle')
bg.addEventListener('mousemove', function(e){
console.log(e.pageX, e.pageY)
circle.style.left = `${e.pageX}px`
circle.style.top = `${e.pageY}px`
})
</script>
</body>
</html>
body{
margin: 0;
}
.bg{
width: 100%;
height: 100vh;
background-image: url(bg.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.circle{
width: 300px; height: 300px;
border-radius: 50%;
background-color: gray;
position: absolute;
transform: translate(-50%, -50%);
border: 3px solid #333;
mix-blend-mode: multiply;
cursor: zoom-in;
filter: blur(10px);
}
.gray{
filter: grayscale(50%);
}
728x90
'프론트엔드 > 컴포넌트' 카테고리의 다른 글
슬라이드 넘길때 텍스트 애니메이션 적용하기 (0) | 2024.02.24 |
---|---|
위로 증가하는 바 그래프 (0) | 2024.02.16 |
입력창에서 숫자만 입력 가능하게 하기 (36) | 2023.08.24 |
말풍선 툴팁 & 드롭다운 메뉴 만들기 (0) | 2023.07.29 |
부드러운 가로 스크롤링 (3) - ease 함수 사용 (0) | 2023.07.06 |