Add color overlay to animation block
This commit is contained in:
parent
84ce11122a
commit
43eaa49ddb
@ -68,7 +68,10 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="column-50 centered-content" style="perspective:600px;z-index:-1;">
|
<div class="column-50 centered-content" style="perspective:600px;z-index:-1;">
|
||||||
<div class="face-wrapper" id="my-face-wrapper"><div id="my-face"></div></div>
|
<div class="face-wrapper" id="my-face-wrapper">
|
||||||
|
<div id="my-face"></div>
|
||||||
|
<div id="color-overlay"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
19
main.css
19
main.css
@ -205,6 +205,7 @@ section.hero-section {
|
|||||||
.hero-content-link {
|
.hero-content-link {
|
||||||
color: #888;
|
color: #888;
|
||||||
transition: all .3s ease-out;
|
transition: all .3s ease-out;
|
||||||
|
border-bottom: 2px solid #aaa;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-content-link:hover {
|
.hero-content-link:hover {
|
||||||
@ -273,7 +274,7 @@ section.hero-section {
|
|||||||
border: none;
|
border: none;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
margin-right: 10px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.linkedin-link:hover {
|
.linkedin-link:hover {
|
||||||
@ -349,6 +350,16 @@ section.hero-section {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#color-overlay {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: transparent;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
transition: all .3s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -420,11 +431,12 @@ section.hero-section {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#my-face {
|
#my-face {
|
||||||
right: -20vw;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.face-wrapper {
|
.face-wrapper {
|
||||||
margin-top: -10vw;
|
margin-top: -10vw;
|
||||||
|
right: -20vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -471,16 +483,15 @@ section.hero-section {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#my-face {
|
#my-face {
|
||||||
right: -60vw;
|
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.face-wrapper {
|
.face-wrapper {
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
|
||||||
width: auto;
|
width: auto;
|
||||||
height: auto;
|
height: auto;
|
||||||
margin-top: -65vh;
|
margin-top: -65vh;
|
||||||
|
right: -60vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -46,6 +46,22 @@ document.querySelectorAll(".hero-content-link").forEach(item => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
document.getElementById("ui-ux-design").addEventListener("mouseover", () => {
|
||||||
|
document.getElementById("color-overlay").style.backgroundColor = "#A5E6BA";
|
||||||
|
});
|
||||||
|
|
||||||
|
document.getElementById("web-design").addEventListener("mouseover", () => {
|
||||||
|
document.getElementById("color-overlay").style.backgroundColor = "#5B2A86";
|
||||||
|
});
|
||||||
|
|
||||||
|
document.getElementById("frontend-dev").addEventListener("mouseover", () => {
|
||||||
|
document.getElementById("color-overlay").style.backgroundColor = "#7785AC";
|
||||||
|
});
|
||||||
|
|
||||||
|
document.getElementById("graphic-design").addEventListener("mouseover", () => {
|
||||||
|
document.getElementById("color-overlay").style.backgroundColor = "#9AC6C5";
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
//--------------------------------------------------------------------------- Services mouseout
|
//--------------------------------------------------------------------------- Services mouseout
|
||||||
document.querySelectorAll(".hero-content-link").forEach(item => {
|
document.querySelectorAll(".hero-content-link").forEach(item => {
|
||||||
@ -55,10 +71,10 @@ document.querySelectorAll(".hero-content-link").forEach(item => {
|
|||||||
|
|
||||||
steadyState();
|
steadyState();
|
||||||
faceWrapper.style.transform = "none";
|
faceWrapper.style.transform = "none";
|
||||||
|
document.getElementById("color-overlay").style.backgroundColor = "transparent";
|
||||||
|
|
||||||
}, 500);
|
}, 500);
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user