/** * Magic Cursor JS */ (function($) { "use strict"; if ($("body").not(".is-mobile").hasClass("tt-magic-cursor")) { if ($(window).width() > 1024) { $(".magnetic-item").wrap('
'); if ($("a.magnetic-item").length) { $("a.magnetic-item").addClass("not-hide-cursor"); } var $mouse = { x: 0, y: 0 }; // Cursor position var $pos = { x: 0, y: 0 }; // Cursor position var $ratio = 0.15; // delay follow cursor var $active = false; var $ball = $("#ball"); var $ballWidth = 36; // Ball default width var $ballHeight = 36; // Ball default height var $ballOpacity = 0.5; // Ball default opacity var $ballBorderWidth = 2; // Ball default border width gsap.set($ball, { // scale from middle and style ball xPercent: -50, yPercent: -50, width: $ballWidth, height: $ballHeight, borderWidth: $ballBorderWidth, opacity: $ballOpacity }); document.addEventListener("mousemove", mouseMove); function mouseMove(e) { $mouse.x = e.clientX; $mouse.y = e.clientY; } gsap.ticker.add(updatePosition); function updatePosition() { if (!$active) { $pos.x += ($mouse.x - $pos.x) * $ratio; $pos.y += ($mouse.y - $pos.y) * $ratio; gsap.set($ball, { x: $pos.x, y: $pos.y }); } } $(".magnetic-wrap").mousemove(function (e) { parallaxCursor(e, this, 2); // magnetic ball = low number is more attractive callParallax(e, this); }); function callParallax(e, parent) { parallaxIt(e, parent, parent.querySelector(".magnetic-item"), 25); // magnetic area = higher number is more attractive } function parallaxIt(e, parent, target, movement) { var boundingRect = parent.getBoundingClientRect(); var relX = e.clientX - boundingRect.left; var relY = e.clientY - boundingRect.top; gsap.to(target, { duration: 0.3, x: ((relX - boundingRect.width / 2) / boundingRect.width) * movement, y: ((relY - boundingRect.height / 2) / boundingRect.height) * movement, ease: Power2.easeOut }); } function parallaxCursor(e, parent, movement) { var rect = parent.getBoundingClientRect(); var relX = e.clientX - rect.left; var relY = e.clientY - rect.top; $pos.x = rect.left + rect.width / 2 + (relX - rect.width / 2) / movement; $pos.y = rect.top + rect.height / 2 + (relY - rect.height / 2) / movement; gsap.to($ball, { duration: 0.3, x: $pos.x, y: $pos.y }); } // Magic cursor behavior // ====================== // Magnetic item hover. $(".magnetic-wrap").on("mouseenter mouseover", function (e) { $ball.addClass("magnetic-active"); gsap.to($ball, { duration: 0.3, width: 70, height: 70, opacity: 1 }); $active = true; }).on("mouseleave", function (e) { $ball.removeClass("magnetic-active"); gsap.to($ball, { duration: 0.3, width: $ballWidth, height: $ballHeight, opacity: $ballOpacity }); gsap.to(this.querySelector(".magnetic-item"), { duration: 0.3, x: 0, y: 0, clearProps: "all" }); $active = false; }); // Alternative cursor style on hover. $(".cursor-alter, .tt-main-menu-list > li > a, .tt-main-menu-list > li > .tt-submenu-trigger > a") .not(".magnetic-item") // omit from selection. .on("mouseenter", function () { gsap.to($ball, { duration: 0.3, borderWidth: 0, opacity: 0.2, backgroundColor: "#CCC", width: "100px", height: "100px", }); }).on("mouseleave", function () { gsap.to($ball, { duration: 0.3, borderWidth: $ballBorderWidth, opacity: $ballOpacity, backgroundColor: "transparent", width: $ballWidth, height: $ballHeight, clearProps: "backgroundColor" }); }); // Overlay menu caret hover. $(".tt-ol-submenu-caret-wrap .magnetic-wrap").on("mouseenter", function () { gsap.to($ball, { duration: 0.3, scale: 0.6, borderWidth: 3 }); }).on("mouseleave", function () { gsap.to($ball, { duration: 0.3, scale: 1, borderWidth: $ballBorderWidth }); }); // Cursor view on hover (data attribute "data-cursor="..."). $("[data-cursor]").each(function () { $(this).on("mouseenter", function () { $ball.addClass("ball-view").append(''); $(".ball-view-inner").append($(this).attr("data-cursor")); gsap.to($ball, { duration: 0.3, yPercent: -75, width: 85, height: 85, opacity: 1, borderWidth: 0 }); gsap.to(".ball-view-inner", { duration: 0.3, scale: 1, autoAlpha: 1 }); }).on("mouseleave", function () { gsap.to($ball, { duration: 0.3, yPercent: -50, width: $ballWidth, height: $ballHeight, opacity: $ballOpacity, borderWidth: $ballBorderWidth }); $ball.removeClass("ball-view").find(".ball-view-inner").remove(); }); $(this).addClass("not-hide-cursor"); }); // Cursor drag on hover (class "cursor-drag"). For Swiper sliders. $(".swiper").each(function () { if ($(this).parent().attr("data-simulate-touch") == "true") { if ($(this).parent().hasClass("cursor-drag")) { $(this).on("mouseenter", function () { $ball.append(''); gsap.to($ball, { duration: 0.3, width: 60, height: 60, opacity: 1 }); }).on("mouseleave", function () { $ball.find(".ball-drag").remove(); gsap.to($ball, { duration: 0.3, width: $ballWidth, height: $ballHeight, opacity: $ballOpacity }); }); $(this).addClass("not-hide-cursor"); // Ignore "data-cursor" on hover. $(this).find("[data-cursor]").on("mouseenter mouseover", function () { $ball.find(".ball-drag").remove(); return false; }).on("mouseleave", function () { $ball.append(''); gsap.to($ball, { duration: 0.3, width: 60, height: 60, opacity: 1 }); }); } } }); // Cursor drag on mouse down / click and hold effect (class "cursor-drag-mouse-down"). For Swiper sliders. $(".swiper").each(function () { if ($(this).parent().attr("data-simulate-touch") == "true") { if ($(this).parent().hasClass("cursor-drag-mouse-down")) { $(this).on("mousedown pointerdown", function (e) { if (e.which === 1) { // Affects the left mouse button only! gsap.to($ball, { duration: 0.2, width: 60, height: 60, opacity: 1 }); $ball.append(''); } }).on("mouseup pointerup", function () { $ball.find(".ball-drag").remove(); if ($(this).find("[data-cursor]:hover").length) { } else { gsap.to($ball, { duration: 0.2, width: $ballWidth, height: $ballHeight, opacity: $ballOpacity }); } }).on("mouseleave", function () { $ball.find(".ball-drag").remove(); gsap.to($ball, { duration: 0.2, width: $ballWidth, height: $ballHeight, opacity: $ballOpacity }); }); // Ignore "data-cursor" on mousedown. $(this).find("[data-cursor]").on("mousedown pointerdown", function () { return false; }); // Ignore "data-cursor" on hover. $(this).find("[data-cursor]").on("mouseenter mouseover", function () { $ball.find(".ball-drag").remove(); return false; }); } } }); // Cursor close on hover. $(".cursor-close").each(function () { $(this).addClass("ball-close-enabled"); $(this).on("mouseenter", function () { $ball.addClass("ball-close-enabled"); $ball.append('