Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

JavaScript Need your help 🤗 : How do I remove hand (pointer) cursor

Dan001

Coder
hello


Is it possible to remove the hand cursor that appears when hovering over a link? 😊

Below my CSS et JS code and in attachment a image. I do not know where to change the code 🤗 I'm not at all an expert in coding.

"cursor:none;" doesn't work

thank you for your help 😊



JavaScript:
<script>
function createCustomCursor() {
let cursor = document.getElementById('myCustomCursor');

if (cursor) {
console.log('myCustomCursor already exist');
addCursorSpecialEffectToAllPageLinks(cursor);
} else {
cursor = document.createElement("div");
cursor.setAttribute("id", "myCustomCursor");
document.body.appendChild(cursor);

initCustomCursor(cursor);
addCursorSpecialEffectToAllPageLinks(cursor);
}
}


function initCustomCursor(cursor) {
document.body.onmousemove = function(e) {
cursor.style.setProperty('--x', (e.clientX) + 'px');
cursor.style.setProperty('--y', (e.clientY) + 'px');
}
}

function addCursorSpecialEffectToAllPageLinks(cursor) {
var links = document.querySelectorAll("a"); // Get page links

// This ×´for loop×´ is used to find all the page links and add the "myCursorHoverState" css class to create special effect on hover
for (var i = 0; i < links.length; i++) {
links[i].addEventListener("mouseenter", function(event) {
console.log('In');
cursor.classList.add("myCursorHoverState"); // Add the hover class
}, false);

links[i].addEventListener("mouseleave", function(event) {
console.log('Out');
cursor.classList.remove("myCursorHoverState"); // Removethe hover class
}, false);
}
}

function myFunction(x) {

    if (x.matches) { // If media query matches

        createCustomCursor();      

      }

    }

var x = window.matchMedia("(min-width: 1001px)")    //desktop

myFunction(x) // Call listener function at run time

x.addListener(myFunction) // Attach listener function on state changes


</script>

CSS:
<style>

    body {

        cursor: none;

        min-height: 100%;

        background: rgb(0, 0, 0);

    }

   

    #myCustomCursor {

        cursor: none;

        position: fixed;

        width: 30px;

        height: 30px;

        background: #1B1C1E;

        border-radius: 50%;

        top: var(--y, 0);

        left: var(--x, 0);

        transform: translate(-50%, -50%);

        mix-blend-mode: normal;

        pointer-events: none;

        transition-duration: 40ms;

        transition-timing-function: ease-out;

        z-index: 999999!important;

    }

  #myCustomCursor.myCursorHoverState {

        cursor: none;

    width: 90px;

    height: 90px;

    background: pink;

}


}

</style>
 

Attachments

  • a.jpg
    a.jpg
    33.1 KB · Views: 1
Back
Top Bottom