forked from rebillar/site-accueil-insa
31 lines
952 B
PHP
31 lines
952 B
PHP
|
<script type="text/javascript">
|
||
|
document.onmousemove = suitsouris;
|
||
|
function suitsouris(evenement)
|
||
|
{
|
||
|
if(navigator.appName=="Microsoft Internet Explorer")
|
||
|
{
|
||
|
var x = event.x+document.body.scrollLeft;
|
||
|
var y = event.y+document.body.scrollTop;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
var x = evenement.pageX;
|
||
|
var y = evenement.pageY;
|
||
|
}
|
||
|
document.getElementById("image_suit_souris").style.left = (x+1/*+1-43*/)+'px';
|
||
|
document.getElementById("image_suit_souris").style.top = (y+1/*-17*/)+'px';
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.cursor {
|
||
|
position: absolute;
|
||
|
display: block;
|
||
|
z-index: 5;
|
||
|
width: 75px;
|
||
|
transform: translateX(-22px) translateY(-106px);
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<img src="assets/img/cursor.png" alt="Image qui suit la souris" id="image_suit_souris" class="cursor" />
|