Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

grab cursor css

.grabbable {
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

 /* (Optional) Apply a "closed-hand" cursor during drag operation. */
.grabbable:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #grab #cursor #css
ADD COMMENT
Topic
Name
5+1 =