Templates Camgirl.Cloud Forums Templates categories Chaturbate Custom mouse pointer

Viewing 0 reply threads
  • Author
    Posts
    • #2164011
       Dan N

      Yes it is doable and yes mouse pointer can be changed but there are a few things one need to know before diving into such editing.

      This is the default cursors you can easily change via css markup

      .alias {cursor: alias;}
      .all-scroll {cursor: all-scroll;}
      .auto {cursor: auto;}
      .cell {cursor: cell;}
      .context-menu {cursor: context-menu;}
      .col-resize {cursor: col-resize;}
      .copy {cursor: copy;}
      .crosshair {cursor: crosshair;}
      .default {cursor: default;}
      .e-resize {cursor: e-resize;}
      .ew-resize {cursor: ew-resize;}
      .grab {cursor: grab;}
      .grabbing {cursor: grabbing;}
      .help {cursor: help;}
      .move {cursor: move;}
      .n-resize {cursor: n-resize;}
      .ne-resize {cursor: ne-resize;}
      .nesw-resize {cursor: nesw-resize;}
      .ns-resize {cursor: ns-resize;}
      .nw-resize {cursor: nw-resize;}
      .nwse-resize {cursor: nwse-resize;}
      .no-drop {cursor: no-drop;}
      .none {cursor: none;}
      .not-allowed {cursor: not-allowed;}
      .pointer {cursor: pointer;}
      .progress {cursor: progress;}
      .row-resize {cursor: row-resize;}
      .s-resize {cursor: s-resize;}
      .se-resize {cursor: se-resize;}
      .sw-resize {cursor: sw-resize;}
      .text {cursor: text;}
      .url {cursor: url(myimage.cur),auto;}
      .w-resize {cursor: w-resize;}
      .wait {cursor: wait;}
      .zoom-in {cursor: zoom-in;}
      .zoom-out {cursor: zoom-out;}

      Now, PNG graphics or gif animated ones or even SVG can work too but make sure your image used as cursor/pointer is not to big.
      Here’s a basic markup

      cursor: url("myimage.png"), auto;

      Another example, this specifies two SVG graphics, providing x = 5 and y = 5 coordinates for the second one, and falling back to the progress keyword value if neither image can be loaded:

      cursor: url(one.svg), url(two.svg) 5 5, progress;

      Custom cursor can be added to almost all HTML elements but makes no sense to use it on all elements especially on Chaturbate bio designs

      Resources:

Viewing 0 reply threads
  • You must be logged in to reply to this topic.