Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Lay Theme Forum

  1. Home
  2. Need Custom Coding for Lay Theme? Find 3rd Party Developers here.
  3. Custom cursor not working after transformations. Help :(

Custom cursor not working after transformations. Help :(

Scheduled Pinned Locked Moved Need Custom Coding for Lay Theme? Find 3rd Party Developers here.
3 Posts 3 Posters 156 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • F Offline
    F Offline
    Flo-D-Manhey
    wrote on Dec 4, 2023, 12:15 PM last edited by
    #1

    Hello everyone,

    I have a problem with my custom cursor on the web page I am making (new-site.estefaniamunoz.com). The combination of the z-index and the transformation to center the cursor makes the cursor not work properly. If I don't give the cursor a transformation, it works, everything is clickable, despite the z-index, but the cursor is not centered.
    If I center the cursor, it works again to click the elements when I remove the z-index.

    Any idea/solution?

    CSS
    .pointer {
    z-index:9999;
    background-color: white;
    position: fixed;
    width: 48px;
    height: 48px;

    mix-blend-mode: difference;
    

    }

    Javascript
    // Custom Cursor

    document.addEventListener( "DOMContentLoaded", function () {
    // Function to check if the lightbox is active
    function isLightboxActive() {
    var lightboxRegion = document.getElementById("lightbox-region");
    return lightboxRegion && lightboxRegion.classList.contains("lay-hide-images");
    }

    // Append the cursor element
    jQuery("body").append('<div class="pointer"></div>');
    
    
    // Update the cursor position on mousemove, and handle visibility based on the lightbox state
    jQuery("body").on("mousemove", function (e) {
        let cursor = jQuery(".pointer");
        let cursorOffsetX = cursor.width() / 2;
        let cursorOffsetY = cursor.height() / 2;
    
        if (!isLightboxActive()) {
           cursor.css({ display:"none" });
           } else {
           cursor.css({ 
            top: (e.clientY - cursorOffsetY) + "px", 
            left: (e.clientX - cursorOffsetX) + "px", 
            display:"block" 
           }); 
        }
    });
    // Rotate the cursor by 45 degrees on click
    jQuery("body").on("mouseenter", "a, img, .img, .elements-collection-region", function () {
        jQuery(".pointer").css({ transform: "rotate(45deg)",  transition: "transform 0.3s ease" });
    });
    // Reset rotation on cursor when leaving the image
    jQuery("body").on("mouseleave", "a, img, .img, .elements-collection-region", function () {
        jQuery(".pointer").css({ transform: "rotate(0deg)",  transition: "transform 0.3s ease" });
    });
    

    });

    Thanks!

    1 Reply Last reply
    0
    • A Offline
      A Offline
      arminunruh
      Global Moderator
      wrote on Dec 5, 2023, 10:08 AM last edited by
      #2

      i can see a cursor. its just white

      does that mean to you that the cursor is not working?
      maybe i don't understand

      1 Reply Last reply
      0
      • P Offline
        P Offline
        paubo
        wrote on Dec 12, 2023, 8:27 PM last edited by
        #3
        This post is deleted!
        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        I also code custom websites or custom Lay features.
        💿 Email me here: 💿
        info@laytheme.com

        Before you post:
        1. When using a WordPress Cache plugin, disable it or clear your cache.
        2. Update Lay Theme and all Lay Theme Addons
        3. Disable all Plugins
        4. Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"

        This often solves issues you might run into

        When you post:
        1. Post a link to where the problem is
        2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
        3. If the problem is difficult to explain, post screenshots / link to a video to explain it
        Online Users
        C
        craigfeldspar
        4 minutes ago
        M
        MWPA
        25 minutes ago
        Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com
        laytheme.com
        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Recent
        • Tags
        • Popular
        • Users
        • Search