2020-06-04 03:13:56 +02:00
|
|
|
var profileContainer = document.getElementById("profileImageContainer");
|
|
|
|
|
|
|
|
let profileAnimRunning = false;
|
|
|
|
|
|
|
|
// Don't run animation on startup
|
|
|
|
profileContainer.style.webkitAnimationPlayState = "paused";
|
|
|
|
|
|
|
|
// Rotate profile
|
|
|
|
const rotateProfile = () => {
|
|
|
|
event.preventDefault;
|
|
|
|
|
|
|
|
// Remove anim class
|
|
|
|
profileContainer.classList.remove('rotateProfileAnim');
|
|
|
|
|
|
|
|
// Triggering reflow
|
|
|
|
void profileContainer.offsetWidth;
|
|
|
|
|
|
|
|
// Re-add animation class
|
|
|
|
profileContainer.classList.add('rotateProfileAnim');
|
|
|
|
|
2020-06-04 03:14:46 +02:00
|
|
|
// Start rotation animation
|
2020-06-04 03:13:56 +02:00
|
|
|
profileContainer.style.webkitAnimationPlayState = "running";
|
|
|
|
profileAnimRunning = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Re-enable animation after death
|
|
|
|
profileContainer.addEventListener(
|
|
|
|
"animationend",
|
|
|
|
(event) => {
|
|
|
|
profileAnimRunning = false;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
// Animate/Show searchbox if profile container was clicked
|
|
|
|
profileContainer.onclick = () => {
|
2020-06-04 03:54:39 +02:00
|
|
|
if (profileAnimRunning) return;
|
|
|
|
|
|
|
|
// Rotate profile
|
|
|
|
// rotateProfile();
|
|
|
|
|
|
|
|
// Toggle search box
|
|
|
|
toggleSearchBox();
|
2020-06-04 03:13:56 +02:00
|
|
|
};
|