1、调用CSS样式:
<link href="css/style.css" rel="stylesheet" type="text/css" />
2、调用JS插件代码:
<script src="js/jquery.js" language="javascript" type="text/javascript"></script>
3、添加HTML代码:
将
<!--效果html开始-->......
<!--效果html结束-->之间的html和js代码;放在<body></body>之间。
4、js代码:
<script language="javascript">
$(".mapArea1").hover(function(){$(".mapcon").hide();$(".mapcon1").show()});
$(".mapcon1").hover(function(){return false;},function(){$(".mapcon1").hide()});
$(".mapArea2").hover(function(){$(".mapcon").hide();$(".mapcon2").show()});
$(".mapcon2").hover(function(){return false;},function(){$(".mapcon2").hide()});
$(".mapArea3").hover(function(){$(".mapcon").hide();$(".mapcon3").show()});
$(".mapcon3").hover(function(){return false;},function(){$(".mapcon3").hide()});
$(".mapArea4").hover(function(){$(".mapcon").hide();$(".mapcon4").show()});
$(".mapcon4").hover(function(){return false;},function(){$(".mapcon4").hide()});
$(".mapBox").hover(function(){return false;},function(){$(".mapcon").hide();});
</script>