Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<div id="test-area"> Move mouse over this area. </div> <div id="mycursor"></div>
#test-area { height: 200px; border: 3px dashed #CCCCCC; background: #FFFFFF; padding: 20px; cursor: url(./blank.cur), none; } #mycursor { cursor: none; width: 97px; height: 137px; background: url("/article-sources/images/pointer-cursor.gif") no-repeat left top; position: absolute; display: none; top: 0; left: 0; z-index: 10000; }
<script type="text/javascript"> $(document).ready(function(){ $('#test-area').mouseout(function(){ $('#mycursor').hide(); return >false; }); $('#test-area').mouseenter(function(){ $('#mycursor').show(); return >false; }); $('#test-area').mousemove(function(e){ $('#mycursor').css('left', e.clientX - 20).css('top', e.clientY + 7); }); }); </script>
<head>
<script type="text/javascript" src="[URL="http://www.html.de/view-source:http://www.ajaxblender.com/jslibs/jquery-1.3.2.js"]/jslibs/jquery-1.3.2.js[/URL]"></script>
</head>