Mudar Cursor normal para Image
Olá,
No seguinte código, como eu altero o document.body.style.cursor="help" para document.body.style.cursor="Minha Imagem"
<html>
<head>
<style type="text/css">
body {
cursor:default;
}
</style>
<script type="text/javascript">
function change() {
document.body.style.cursor="help";
}
</script>
</head>
<body>
<div onclick="change()">Clique Aqui!
</div>
</body>
</html>
Abraços
Discussão (7)
Carregando comentários...