"Text move on mouse move"
Bootstrap 4.1.1 Snippet by ALIMUL AL RAZY

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="cursor"></div>
<div class="outerContainer">
<div class="side leftSide">
<div class="content">Anahit</div>
</div>
<div class="side rightSide">
<div class="content ">Anahit</div>
</div>
</div>
<script>
const elements={
outerContainer:document.querySelector(".outerContainer"),
leftContent:document.querySelector(".leftSide .content"),
rightContent:document.querySelector(".rightSide .content"),
cursor:document.querySelector(".cursor")
}
const {cursor,outerContainer,leftContent,rightContent}=elements;
outerContainer.onmousemove=function(e){
cursor.style.left=e.pageX+"px";
cursor.style.top=e.pageY+"px";
if(e.pageX>=innerWidth/2){
cursor.style.backgroundColor="white"
}else{
cursor.style.backgroundColor="#333"
}
let newNum=((e.pageX - innerWidth/2)/(innerWidth/2));
let newNum2=((e.pageY - innerHeight/2)/(innerHeight/2));
console.log(newNum)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: impact;
}
.outerContainer{
width: 100%;
height: 100vh;
display: flex;
cursor:url(circle-shape-outline.png),auto;
}
.outerContainer *{
cursor:url(circle-shape-outline.png),auto
}
.outerContainer .side{
width: 50%;
height: 100%;
display: flex;
overflow: hidden;
font-size: 100px;
font-family: impact;
}
.outerContainer .leftSide{
justify-content: flex-end;
align-items: center;
color: #333;
}
.outerContainer .rightSide{
justify-content: flex-start;
align-items: center;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: