Twine Version: 2
I have been trying to create a custom cursor for my game, and I need some help. I need some help using the animated cursors from this zip file.
jellies.zip (23.6 KB) and I need help
Twine Version: 2
I have been trying to create a custom cursor for my game, and I need some help. I need some help using the animated cursors from this zip file.
jellies.zip (23.6 KB) and I need help
Hi there!
Normally, you’d handle that in the StyleSheet with the rule:
* {
cursor: url('Cursor-URL-here');
}
(this would apply the cursor to the whole project - if you want it to look differently for links/buttons/element, you’d need to add cursor
to the relevant element too)
What have you tried so far?
cursor: url("https://i.ibb.co/qL9F4jsz/Regretevator-Fish-cursor-Sweezy-Cursors.png") 16 16, auto;
}
a:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
cursor: url("https://i.ibb.co/vCHXSFnM/Regretevator-Fish-pointer-Sweezy-Cursors.png") 16 16, pointer;
}
and
.pointer,
.help,
.wait,
.copy,
.alias,
.move {
cursor: url('images/jelly-cursor.png'), pointer;
}
Do you have an issue with both blocks of code? Or only the online one? Or only the local one?
both of them
aight. so a couple of things:
Inspect Page
function of your browser to find the correct ones to target.a
links are actually tw-link
tw-link
instead of a
and it workedThat should be fixing the issues you have