Templates Camgirl.Cloud › Forums › Templates categories › Chaturbate › Custom mouse pointer
Tagged: add cursor, add image to cusror, change mouse, cursor, mouse pointer
- This topic has 0 replies, 1 voice, and was last updated 3 years, 4 months ago by Dan N.
-
AuthorPosts
-
-
July 1, 2021 at 6:26 am #2164011
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:
-
-
AuthorPosts
- You must be logged in to reply to this topic.