codice HTML:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<SCRIPT>
/* Mouseover barca arancione cambio barca soprastante */
$(document).ready(function(){
$("#bt1").mouseover(function() {
$("#bt2").css("width","100%")
$("#bt2").css("height","50%")
$("#bt2").css("top","0")
$("#bt2").css("left","0")
$("#bt2").css("background","url(BARCA%20B%20SLIM%20SFOCATA.jpg)")
$("#bt2").css("background-repeat","no-repeat")
$("#bt2").css("background-position","center")
$("#bt2").css("background-position","bottom")
$("#bt2").css("position","fixed");
$("#bt2").css("z-index","url(-1)")
$("#bt2").css("-webkit-background-size","cover")
$("#bt2").css("-moz-background-size","cover")
$("#bt2").css("-o-background-size","cover")
$("#bt2").css("background-size","cover")
});
/* Mouseout barca arancione cambio barca soprastante */
$( "#bt1").mouseout(function() {
$("#bt2").css("width","100%")
$("#bt2").css("height","50%")
$("#bt2").css("top","0")
$("#bt2").css("left","0")
$("#bt2").css("background","url(BARCA%20B%20SLIM.jpg)")
$("#bt2").css("background-repeat","no-repeat")
$("#bt2").css("background-position","center")
$("#bt2").css("background-position","bottom")
$("#bt2").css("position","fixed");
$("#bt2").css("z-index","url(-1)")
$("#bt2").css("-webkit-background-size","cover")
$("#bt2").css("-moz-background-size","cover")
$("#bt2").css("-o-background-size","cover")
$("#bt2").css("background-size","cover")
});
});
/* Mouseover barca bianca e marrone con barca sottostante */
$(document).ready(function(){
$("#bt2").mouseover(function() {
$("#bt1").css("width","100%")
$("#bt1").css("height","50%")
$("#bt1").css("top","50%")
$("#bt1").css("left","0")
$("#bt1").css("background","url(BARCA%20A%20SLIM%20SFOCATA.jpg)")
$("#bt1").css("background-repeat","no-repeat")
$("#bt1").css("background-position","center")
$("#bt1").css("background-position","top")
$("#bt1").css("position","fixed");
$("#bt1").css("z-index","-1")
$("#bt1").css("-webkit-background-size","cover")
$("#bt1").css("-moz-background-size","cover")
$("#bt1").css("-o-background-size","cover")
$("#bt1").css("background-size","cover")
});
$("#bt2").mouseout(function() {
$("#bt1").css("width","100%")
$("#bt1").css("height","50%")
$("#bt1").css("top","50%")
$("#bt1").css("left","0")
$("#bt1").css("background","url(BARCA%20A%20SLIM.jpg)")
$("#bt1").css("background-repeat","no-repeat")
$("#bt1").css("background-position","center")
$("#bt1").css("background-position","top")
$("#bt1").css("position","fixed");
$("#bt1").css("z-index","-1")
$("#bt1").css("-webkit-background-size","cover")
$("#bt1").css("-moz-background-size","cover")
$("#bt1").css("-o-background-size","cover")
$("#bt1").css("background-size","cover")
});
});
</SCRIPT>