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>
<script type="text/javascript" src="js/jquery.SuperSlide.js"></script>
<!--[if IE 6]>
<script src="js/ie6PNG.js" type="text/javascript"></script>
<script type="text/javascript">DD_belatedPNG.fix('*');</script>
<![endif]-->
3、添加HTML代码:
将
<!--效果html开始-->......
<!--效果html结束-->之间的html和js代码;放在<body></body>之间。
js代码:
<script language="javascript">
jQuery(".slideBox").slide({mainCell:".bd ul",effect:"fold",autoPlay:true});
$(".showPro01").click(function(){$(".malrBox,.malrCon").show();$(".malrImg").eq(0).show()});
$(".showPro02").click(function(){$(".malrBox,.malrCon").show();$(".malrImg").eq(1).show()});
$(".showPro03").click(function(){$(".malrBox,.malrCon").show();$(".malrImg").eq(2).show()});
$(".showPro04").click(function(){$(".malrBox,.malrCon").show();$(".malrImg").eq(3).show()});
$(".showPro05").click(function(){$(".malrBox,.malrCon").show();$(".malrImg").eq(4).show()});
$(function(){
$(".malrBox").height($(document).height());
$(".malrClose").click(function(){$(".malrBox,.malrCon,.malrImg").hide();});
})
</script>