我一直在努力實現一個SVG圓形遮罩光標效果。跟著youtube上的很多教程,逛了很多codepens,這是我做的。它在某種程度上實現了掩蔽效果,但以非常錯誤和限制性的方式。 內容:‘從2009年開始藏爛屎’; 。這就是當文本被光標遮擋時我如何改變它,但是現在我不能像當它是一個HTML H1或H2時那樣正確地格式化它。另一個問題是,有時當我的光標離開H1區時,一小塊被屏蔽的文本是可見的,并與主文本重疊。
我會附上我下面的全部代碼。
const cursor = document.querySelector('.cursor');
const main = document.querySelector('.main_title');
main.style.setProperty('--x', '0');
main.style.setProperty('--y', '0');
window.addEventListener('mousemove', function(e) {
const x = e.clientX;
const y = e.clientY;
cursor.style.left = `${x - 20}px`;
cursor.style.top = `${y - 20}px`;
})
main.addEventListener('mousemove', function(e) {
const x = e.offsetX;
const y = e.offsetY;
this.style.setProperty('--x', `${x}px`);
this.style.setProperty('--y', `${y}px`);
})
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
* {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #000000;
}
body {
min-height: 100vh;
min-width: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
h1 {
font-size: 64px;
position: relative;
color: #ffffff;
}
.main_title::before {
content: 'Hiding Bad Shit Since 2009';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
clip-path: circle(160px at var(--x) var(--y));
}
.cursor {
position: fixed;
top: 0;
left: 0;
width: 40px;
height: 40px;
background: #ed5204;
border-radius: 50%;
pointer-events: none;
transition: transform .8s ease;
}
h1:hover~.cursor {
transform: scale(8);
}
<h1>
<span class="main_title">
Making<br>Good<br>Shit<br>Since<br>2009
</span>
</h1>
<span class="cursor"></span>