I have an unordered list (ul) with items on each list item (li) having a different cursor. While it works fine, the transition is not smooth. Is there a way to make the transition from the default cursor to a custom image smoother?
HTML
<section class="who">
<ul>
<li>Purpose</li>
<li>Creative</li>
<li>Enthusiastic</li>
<li>Adventure</li>
<li>Curious</li>
<li>Passionate</li>
</ul>
</section>
CSS
.who ul li:first-of-type {
cursor: url('/assets/media/icons/target.png'), auto;
}
Feel free to apply this concept to other list items as needed.