jQuery带时钟网站幻灯片代码

版权:原创 更新时间:1年以上
[该文章底部包含文件资源,可根据自己情况,决定是否下载资源使用,时间>金钱,如有需要,立即查看资源]

以下是 jQuery带时钟网站幻灯片代码 的示例演示效果:

当前平台(PC电脑)
  • 平台:

部分效果截图:

jQuery带时钟网站幻灯片代码

HTML代码(index.html):

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>风车乐栈</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<br>
<!--轮播图 开始 -->
<div class="main_banner">
	<div class="main_banner_bg"></div>
	<div class="main_banner_wrap">
		<canvas id="myCanvas" width="150" height="150"></canvas>
		<div class="main_banner_box" id="m_box">
			<a href="javascript:void(0)" class="banner_btn js_pre">
				<span class="banner_btn_arrow"><i></i></span>
			</a>
			<a href="javascript:void(0)" class="banner_btn btn_next js_next">
				<span class="banner_btn_arrow"><i></i></span>
			</a>
			<ul>
				<li id="imgCard0">
					<a href=""><span style="opacity:0;"></span></a>      
					<img src="main_banner/big0020150102211033.jpg" alt="">
					<p style="bottom:0">周杰伦粉丝版MV</p>
				</li> 
				<li id="imgCard1">
					<a href=""><span style="opacity:0.4;"></span></a>      
					<img src="main_banner/big0120150101183428.jpg" alt="">
					<p>乐侃有声节目第二期</p>
				</li> 
				<li id="imgCard2">
					<a href=""><span style="opacity:0.4;" ></span></a>        
					<img src="main_banner/big0320150101183351.jpg" alt="">
					<p>乐见大牌:”荣“耀之声,”维“我独尊</p>
				</li> 
				<li id="imgCard3">
					<a href=""><span style="opacity:0.4;"></span></a>      
					<img src="main_banner/big0420150101224343.jpg" alt="">
					<p>王力宏四年心血结晶</p>
				</li> 
				<li id="imgCard4">
					<a href=""><span style="opacity:0.4;"></span></a>      
					<img src="main_banner/big0720150102210934.jpg" alt="">
					<p>MV精选:《武媚》女神团美艳大比拼</p>
				</li> 
			</ul>
			<!--火狐倒影图层-->
			<p id="rflt"></p>
			<!--火狐倒影图层-->
		</div>
		<!--序列号按钮-->
		<div class="btn_list">
			<span class="curr"></span><span></span><span></span><span></span><span></span>        
		</div>
	</div>
</div>
<!--轮播图 结束 -->
<script type="text/javascript" src=" js/jquery.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>








JS代码(index.js):

// index.js$(function(){
	//myCanvas---------------------------------------------------------------------------var clock_x = $(".main_banner_wrap").width()-150;
	var clock_y = $(".main_banner_wrap").height()-150;
	$("#myCanvas").css({
	"left":clock_x,"top":clock_y}
);
	var moveTimer = null;
	var disX = 0,disY = 0;
	var prevX = 0,prevY = 0;
	//上一记录点var iSpeedX = 0,iSpeedY = 0;
	//松手速度 = 松手点 - 上一记录点$("#myCanvas").mousedown(function(ev){
	$(this).css("opacity",0.9);
	var seft = $(this);
	disX = ev.pageX-$(this).offset().left+$(this).parent().offset().left;
	disY = ev.pageY-$(this).offset().top+$(this).parent().offset().top;
	prevX = ev.pageX;
	prevY = ev.pageY;
	//console.log(prevX+"||"+prevY)$(document).mousemove(function(ev){
	var x = ev.pageX - disX;
	var y = ev.pageY - disY;
	if(x<=0){
	x = 0;
}
else if(x > clock_x){
	x = clock_x;
}
if(y<=0){
	y = 0;
}
else if(y > clock_y){
	y = clock_y;
}
seft.css({
	"left":x,"top":y}
);
	iSpeedX = ev.pageX - prevX;
	//松手速度 = 松手点 - 上一记录点iSpeedY = ev.pageY - prevY;
	prevX = ev.pageX;
	//随着拖动 不断更新 上一记录点prevY = ev.pageY;
	console.log(iSpeedX+"||"+iSpeedY)}
);
	$(document).mouseup(function(){
	seft.css("opacity",0.8);
	$(document).off();
	move();
}
);
	return false;
}
);
	function move(){
	clearInterval(moveTimer);
	moveTimer = setInterval(function(){
	iSpeedY += 1;
	var iL = $("#myCanvas").position().left+iSpeedX;
	var iT = $("#myCanvas").position().top+iSpeedY;
	if(iL>clock_x){
	iL = clock_x;
	iSpeedX *= -1;
	iSpeedX *= 0.95;
}
else if(iL < 0){
	iL = 0;
	iSpeedX *= -1;
	iSpeedX *= 0.95;
}
if(iT>clock_y){
	iT = clock_y;
	iSpeedY *= -1;
	iSpeedY *= 0.95;
	iSpeedX *= 0.95;
}
else if(iT < 0){
	iT = 0;
	iSpeedY *= -1;
	iSpeedY *= 0.95;
}
if(Math.abs(iSpeedX)<1&&Math.abs(iSpeedY)<1&&Math.abs(iT-clock_y)<1){
	clearInterval(moveTimer);
}
$("#myCanvas").css({
	"left":iL,"top":iT}
);
}
,30);
}
;
	var iNow = 0;
	var arr = ["#ffae00","black"];
	myClock();
	setInterval(myClock,1000);
	//每一秒钟重绘一次 function myClock(){
	var myCanvas = document.getElementById("myCanvas");
	var oC = myCanvas.getContext("2d");
	//得到时分秒var now = new Date(),sec = now.getSeconds(),min = now.getMinutes(),hour = now.getHours();
	hour = hour>=12 ? hour-12:hour;
	iNow++;
	iNow = iNow%2;
	oC.save();
	//初始化画布oC.clearRect(0,0,myCanvas.width,myCanvas.height);
	oC.translate(75,75);
	oC.scale(0.5,0.5);
	oC.rotate(-Math.PI/2);
	//白色背景oC.save();
	oC.fillStyle = "#fff";
	oC.beginPath();
	oC.arc(0,0,140,0,Math.PI*2,true);
	oC.fill();
	oC.restore();
	oC.strokeStyle = "black";
	oC.fillStyle = "black";
	oC.lineWidth = 4;
	oC.lineCap = "round";
	//时针刻度oC.save();
	oC.beginPath();
	for(var i=0;
	i<12;
	i++){
	oC.moveTo(110,0);
	oC.lineTo(120,0);
	oC.rotate(Math.PI/6);
}
oC.stroke();
	oC.restore();
	//分针刻度oC.save();
	oC.fillStyle = "black";
	oC.lineWidth = 2;
	oC.beginPath();
	for(var i=0;
	i<60;
	i++){
	if(i%5 != 0){
	oC.moveTo(116,0);
	oC.lineTo(120,0);
}
oC.rotate(Math.PI/30);
}
oC.stroke();
	oC.restore();
	oC.save();
	oC.rotate(Math.PI/2);
	oC.font = "30px impact";
	//12点oC.fillText("12",-15,-80);
	//3点oC.fillText("3",88,13);
	//6点oC.fillText("6",-8,104);
	//9点oC.fillText("9",-103,11);
	oC.restore();
	//画时针oC.save();
	oC.strokeStyle = "#ff3300";
	oC.rotate((Math.PI/6)*hour+(Math.PI/360)*min+(Math.PI/21600)*sec);
	oC.lineWidth = 8;
	oC.beginPath();
	oC.moveTo(-20,0);
	oC.lineTo(60,0);
	oC.stroke();
	oC.restore();
	//画分针oC.save();
	oC.rotate((Math.PI/30)*min+(Math.PI/1800)*sec);
	oC.strokeStyle = "#27A9E3";
	oC.lineWidth = 6;
	oC.beginPath();
	oC.moveTo(-28,0);
	oC.lineTo(90,0);
	oC.stroke();
	oC.restore();
	//画秒针/*oC.save();
	oC.rotate(sec*Math.PI/30);
	oC.strokeStyle = "#D40000";
	oC.lineWidth = 3;
	oC.beginPath();
	oC.moveTo(-30,0);
	oC.lineTo(105,0);
	oC.stroke();
	oC.restore();
	*/
//风车秒针oC.save();
	oC.rotate(sec*Math.PI/30);
	oC.save();
	oC.fillStyle = "#f23";
	oC.beginPath();
	oC.arc(94,0,10,0,Math.PI,true);
	oC.fill();
	oC.restore();
	oC.save();
	oC.rotate(Math.PI/2);
	oC.fillStyle = "#ffae00";
	oC.beginPath();
	oC.arc(10,-84,10,0,Math.PI,true);
	oC.fill();
	oC.restore();
	oC.save();
	oC.fillStyle = "#27A9E3";
	oC.beginPath();
	oC.arc(74,0,10,Math.PI,Math.PI*2,true);
	oC.fill();
	oC.restore();
	oC.save();
	oC.rotate(Math.PI/2);
	oC.fillStyle = "#0eaf52";
	oC.beginPath();
	oC.arc(-10,-84,10,Math.PI,Math.PI*2,true);
	oC.fill();
	oC.restore();
	oC.restore()//风车秒针//表框oC.save();
	oC.lineCap = "butt";
	oC.lineWidth = 16;
	oC.save();
	oC.strokeStyle = "#0eaf52";
	oC.beginPath();
	oC.arc(0,0,142,0,Math.PI*2,true);
	oC.stroke();
	oC.restore();
	oC.save();
	oC.strokeStyle = "#ffae00";
	oC.beginPath();
	oC.arc(0,0,142,0,Math.PI/iNow*5/3,true);
	oC.stroke();
	oC.restore();
	oC.restore();
	//中心点oC.save();
	oC.fillStyle = "#fff";
	oC.beginPath();
	oC.arc(0,0,4,0,Math.PI*2,true);
	oC.fill();
	oC.restore();
	oC.restore();
}
;
	//一、user_login_box(用户登陆)------------------------------------------------------------------$(document).click(function(){
	//页面点击 隐藏$(".user_login_box").hide();
	$(".user_login").removeClass("btn_active");
}
) $(".user_login,.user_login_box").click(function(event){
	event.stopPropagation();
	//阻止默认事件}
) $(".user_login").each(function(){
	$(this).click(function(){
	$(this).toggleClass("btn_active");
	$(this).next().toggle();
	//显示和隐藏 切换$(this).parent().siblings().find(".user_login_box").hide();
}
)}
)//主菜单--------------------------------------------------------------------------------------var index_1=0;
	//鼠标移入的序列号//鼠标移入主菜单----------------------------------------------$("ul.navigation li a").hover(function(){
	$("ul.navigation li a").removeClass("on");
	$(this).addClass("on");
	audioPlayer();
}
,function(){
	$("#audioPlayer")[0].pause();
}
);
	$("ul.navigation li a").hover(function(){
	//鼠标移入index_1=$(this).parent().index();
	$(".sub_nav ul .sub_list p").eq(index_1).stop(true,true).show(600).siblings().hide();
	audioPlayer();
}
,function(){
	$("#audioPlayer")[0].pause();
}
);
	//hover音效function audioPlayer(){
	$("#audioPlayer").attr({
	"src":"/wp-content/uploads/2015/01/3.mp3"}
);
	$("#audioPlayer")[0].play();
	$("#audioPlayer")[0].volume="0.5";
}
;
	//主菜单解决bug-------------------------------------------//解决 非火狐、非谷歌的兼容性 判断浏览器类型及版本号$.browser.mozilla = /firefox/.test(navigator.userAgent.toLowerCase());
	$.browser.webkit = /webkit/.test(navigator.userAgent.toLowerCase());
	$.browser.opera = /opera/.test(navigator.userAgent.toLowerCase());
	$.browser.msie = /msie/.test(navigator.userAgent.toLowerCase());
	//判断是webkit且版本小于35.0的(360-7.1) 或者 是IE浏览器if(($.browser.webkit&&parseFloat($.browser.version)<35)||$.browser.msie){
	$("#main_nav li a").css({
	"transition":"none",background:"none","transform":"rotateX(0deg)"}
);
	$("#main_nav li a").find("span:last-child").css({
	display:"none"}
);
	$("#main_nav li a").click(function(){
	$(this).css({
	background:"none","transform":"rotateX(0deg)"}
);
}
);
	$("#main_nav li a").mouseover(function(){
	$(this).css({
	background:"none","transform":"rotateX(0deg)"}
);
}
);
}
//主菜单解决bug-------------------------------------------//三、二级菜单,当滚动条滚到一定距离,让它相对浏览器定位(fixed)---------------------------------if($(".sub_nav").length>0){
	//获取二级菜单到顶部的距离var navTop = $(".sub_nav").offset().top - $('.sub_nav').height()/5;
	$(window).scroll(function(){
	if ($(window).scrollTop() >= navTop){
	$(".sub_nav").addClass("fixed");
	$(".sub_nav ul li a.smallogo").css({
	opacity:1}
);
	/*$(".main_banner").css({
	background:"#112233"}
);
	#d1d6da*/
 //轮播图背景}
else{
	$(".sub_nav").removeClass("fixed");
	$(".sub_nav ul li a.smallogo").css({
	opacity:0}
);
	/*$(".main_banner").css({
	background:""}
);
	*/
}
}
);
}
//四、搜索框--------------------------------------------------------------------------------------var sValue=$(".search").val();
	var hotStimer=null;
	//获取鼠标焦点$(".search").focus(function(){
	if($(this).val()==sValue){
	$(this).val("");
	//清空val值$(this).css({
	background:"#fff"}
);
}
//搜索下拉框 依次展开var i=0;
	clearInterval(hotStimer);
	hotStimer=setInterval(function(){
	//添加open样式 展开$(".hot_search div").eq(i).addClass("open");
	i++;
	if(i==$(".hot_search div").length){
	clearInterval(hotStimer);
}
}
,150);
}
);
	//失去鼠标焦点$(".search").blur(function(){
	if($(this).val()==""){
	$(this).val(sValue);
	//还原val值$(this).css({
	background:"#ededed"}
);
}
//搜索下拉框 依次收缩var i=$(".hot_search div").length-1;
	clearInterval(hotStimer);
	hotStimer=setInterval(function(){
	//移除open样式 收缩$(".hot_search div").eq(i).removeClass("open");
	i--;
	if(i<0){
	clearInterval(hotStimer);
}
}
,100);
}
);
	//搜索下拉菜单选项点击时替换对应的val值var sHtml=null;
	$(".hot_search div").click(function(event){
	event.stopPropagation();
	sHtml=$(this).find("a").html();
	$(".search").val(sHtml);
}
);
	//五、轮播图-------------------------------------------------------------------------------------var len=$(".main_banner li").length;
	var index_2=0;
	var timer=800;
	var intervaltimer=0;
	var isMoving=false;
	function slide(slideMode){
	//轮播方法if (isMoving==false){
	isMoving=true;
	var prev;
	var next;
	var hidden;
	var curr=$("#imgCard"+index_2);
	//当前正中显示if(index_2==0){
	//当前正中显示的是第0张时 prev为最后一张prev=$("#imgCard"+(len-1));
}
else{
	//否则 序列号-1prev=$("#imgCard"+(index_2-1));
}
if(index_2==(len-1)){
	//当前正中显示的是最后一张时 next为第0张next=$("#imgCard0");
}
else{
	//否则 序列号+1next=$("#imgCard"+(index_2+1));
}
if(slideMode){
	//slideMode为1(true),执行slide(1),上一张if(index_2-2>=0){
	//index_2234hidden=$("#imgCard"+(index_2-2));
	//012}
else{
	//index_201hidden=$("#imgCard"+(len+index_2-2));
	//34}
prev.css("z-index","5");
	//点击prev按钮 让prev位置上的这张图片 层级最高 显示next.css("z-index","1");
	curr.css("z-index","2");
	hidden.css("z-index","1");
	//当index_2自减,各图片往右运动效果hidden.css({
	width:"450px",height:"180px",top:"60px","left":"0px","opacity":0}
);
	hidden.stop(true,true).animate({
	width:"580px",height:"240px",top:"20px",left:"0px",opacity:1}
,timer);
	curr.stop(true,true).animate({
	width:"580px",height:"240px",top:"20px",left:"600px",opacity:1}
,timer);
	next.stop(true,true).animate({
	width:"450px",height:"180px",top:"60px","left":"730px","opacity":0}
,timer,function(){
	next.find("span").css("opacity",0);
	isMoving = false;
}
);
	//prev --> curr prev中的图片li轮换到curr的位置 其他一次轮换prev.find("span").css("opacity",0);
	$(".main_banner_box li").find("p").css({
	"bottom":"-50px"}
);
	//所有标题隐藏prev.stop(true,true).animate({
	width:"670px",height:"280px",left:"255px",top:0,opacity:1}
,timer,function(){
	$(this).find("p").animate({
	"bottom":"0px"}
);
	//当前这张图片的标题运动出来}
);
	index_2--;
}
else{
	//执行next 操作if(index_2+2>=len){
	//index_234hidden=$("#imgCard"+(index_2+2-len));
	//01}
else{
	//index_2012hidden=$("#imgCard"+(index_2+2));
	//234}
prev.css("z-index","1");
	next.css("z-index","5");
	//点击next按钮 让next位置上的这张图片 层级最高 显示curr.css("z-index","2");
	hidden.css("z-index","1");
	//当index_2自增,各图片往左运动效果hidden.css({
	width:"450px",height:"180px",top:"60px","left":"730px","opacity":0}
);
	hidden.stop(true,true).animate({
	width:"580px",height:"240px",top:"20px",left:"600px",opacity:1}
,timer);
	curr.stop(true,true).animate({
	width:"580px",height:"240px",top:"20px",left:"0px",opacity:1}
,timer);
	//next --> curr next中的图片li轮换到curr的位置 其他一次轮换next.find("span").css("opacity",0);
	$(".main_banner_box li").find("p").css({
	"bottom":"-50px"}
);
	//所有标题隐藏next.stop(true,true).animate({
	width:"670px",height:"280px",left:"255px",top:0,opacity:1}
,timer,function(){
	$(this).find("p").animate({
	"bottom":"0px"}
);
	//当前这张图片的标题运动出来}
);
	prev.stop(true,true).animate({
	width:"450px",height:"180px",left:"0px",top:"60px",opacity:0}
,timer,function(){
	isMoving = false;
}
);
	index_2++;
}
//if elsehidden.find("span").css("opacity",0.5);
	curr.find("span").css("opacity",0.5);
	if(index_2==len) index_2=0;
	if(index_2<0) index_2=len+index_2;
	//限制index_2的范围$(".btn_list span").removeClass('curr').eq(index_2).addClass('curr');
	//给序列号按钮添加、移除样式}
}
//slide()if(len>3){
	//序列号按钮 跳序切换 方法$(".btn_list span").click(function(event){
	if (isMoving ) return;
	var oIndex=$(this).index();
	if(oIndex==index_2) return;
	//点击按钮的序列号与当前图片的序列号一致,returnclearInterval(intervaltimer)intervaltimer=null;
	var flag=false;
	//当前显示图片的序列号 和 被点击按钮的序列号 间隔超过1且不是首尾两个的时候if(Math.abs(index_2-oIndex)>1&&Math.abs(len-Math.abs(index_2-oIndex))!=1){
	//统一样式$(".main_banner_box li").css({
	width:"300px",height:"120px",left:"600px",top:"60px",opacity:0}
);
	//如果当前的序列号 比 被点击按钮序列号 大 而且 不相邻、不是首尾if(index_2>oIndex&&len-Math.abs(index_2-oIndex)!=1){
	flag=true;
	index_2=oIndex+1;
	//oIndex+1 通过slide() 运动回上一张 oIndex}
else{
	//比 小 而且 不相邻、不是首尾index_2=oIndex-1;
	//oIndex-1 通过slide() 运动到下一张 oIndexif(index_2<0) index_2=len-1;
}
}
else{
	//当前 比 被点击 大且 相邻//从0 跳到 4要执行上一张方法if((index_2>oIndex&&len-(index_2-oIndex)!=1)||(index_2<oIndex&&len+(index_2-oIndex)==1)){
	flag=true;
	//执行上一张}
}
slide(flag);
	intervaltimer=setInterval(slide,3000);
	//自动轮播}
);
	$(".main_banner_box li").on("mousemove",function(){
	if($(this).css("width")=="670px"){
	//鼠标移入为当前正中显示的图片li,则清除定时器clearInterval(intervaltimer);
	intervaltimer=null;
}
}
).on("mouseout",function(){
	//鼠标移除重新滚动clearInterval(intervaltimer);
	intervaltimer=null;
	intervaltimer=setInterval(slide,3000);
}
);
	$(".js_pre").click(function(event){
	//上一张if (isMoving ) return;
	clearInterval(intervaltimer);
	intervaltimer=null;
	slide(1);
	intervaltimer=setInterval(slide,3000);
}
);
	$(".js_next").click(function(event){
	//下一张if (isMoving ) return;
	clearInterval(intervaltimer);
	intervaltimer=null;
	slide();
	intervaltimer=setInterval(slide,3000);
}
);
	intervaltimer=setInterval(slide,3000);
}
else{
	$(".js_pre").hide();
	$(".js_next").hide();
}
//if else//六、在线首发-----------------------------------------------------------------------------------var len_2=$(".new_songs ul").length;
	var now_2=0;
	$("#albumPrev").click(function(){
	//上一组if(now_2>=0){
	now_2--;
	if(now_2==-1){
	now_2=len_2-1;
}
$(".new_songs ul").eq(now_2).addClass("show").siblings().removeClass("show");
	$(".new_songs em.pageNum").html(now_2+1);
}
}
);
	$("#albumNext").click(function(){
	//下一组if(now_2<=len_2){
	now_2++;
	if(now_2==len_2){
	now_2=0;
}
$(".new_songs ul").eq(now_2).addClass("show").siblings().removeClass("show");
	$(".new_songs em.pageNum").html(now_2+1);
}
}
);
	var _html2=$(".new_songs ul.show li.albumBox").eq(2).find("p").html();
	var _html3=$(".new_songs ul.show li.albumBox").eq(3).find("p").html();
	_html2+="<font>HOT</font>";
	_html3+="<font>HOT</font>";
	$(".new_songs ul.show li.albumBox").eq(2).find("p").html(_html2);
	$(".new_songs ul.show li.albumBox").eq(3).find("p").html(_html3);
	//七、MV首播-----------------------------------------------------------------------------------var index_3=0;
	//MV首播按钮序列号var index_33=0;
	//首发MV按钮序列号(MV页面)var index_333=0;
	//热门MV按钮序列号(MV页面)var cont_1=$(".index_mv_body .mvList");
	var cont_2=$(".shoufa_mv_body .mvList");
	var cont_3=$(".hot_mv_body .mvList");
	//MV首播 (首页)-------------------------------------$(".index_mv_title ul li").click(function(){
	//选项卡index_3=$(this).index();
	mvSlide($(this),index_3,cont_1);
}
);
	//首发MV (MV页面)--------------------------------$(".shoufa_mv_title ul li").click(function(){
	//选项卡index_33=$(this).index();
	mvSlide($(this),index_33,cont_2);
}
);
	//热门MV(MV页面)------------------------------------$(".hot_mv_title ul li").click(function(){
	//选项卡index_333=$(this).index();
	mvSlide($(this),index_333,cont_3);
}
);
	//封装MV列表切换效果,共用function mvSlide(btn,n,cont){
	btn.find("a").addClass("cur").parent().siblings().find("a").removeClass("cur");
	cont.eq(n).fadeIn().siblings("div").fadeOut();
	cont.eq(n).addClass("curShow").siblings().removeClass("curShow");
}
var iHtml = "<b></b>";
	$(".index_mv_body .mvList ul.sb li").eq(0).append(iHtml);
	$(".index_mv_body .mvList ul.sb li").eq(1).append(iHtml);
	$(".shoufa_mv_body .mvList ul.sb li").eq(0).append(iHtml);
	$(".shoufa_mv_body .mvList ul.sb li").eq(1).append(iHtml);
	//八、歌曲推荐-----------------------------------------------------------------------------------var songs_rcmd_top=$(".songs_rcmd").offset().top - $(".songs_rcmd").height()/5*6;
	var songs_rcmd_timer=null;
	//计算高度var index_4;
	var songs_rcmd_off=true;
	$(window).scroll(function(){
	//窗口滚动事件var oScrollTop=$(document).scrollTop();
	if(oScrollTop>songs_rcmd_top){
	//当页面滚动距离大于这个值时,列表展开index_4=0;
	clearInterval(songs_rcmd_timer);
	songs_rcmd_timer=setInterval(function(){
	//分三组一起翻出$("#latest li").eq(index_4).addClass("show");
	$("#popular li").eq(index_4).addClass("show");
	$("#rank li").eq(index_4).addClass("show");
	index_4++;
	//document.title=index_4;
	if(index_4==$("#latest li").length){
	clearInterval(songs_rcmd_timer);
}
}
,30);
}
else{
	//当页面滚动距离小于这个值时,列表收缩index_4=$("#latest li").length;
	clearInterval(songs_rcmd_timer);
	songs_rcmd_timer=setInterval(function(){
	$("#latest li").eq(index_4).removeClass("show");
	$("#popular li").eq(index_4).removeClass("show");
	$("#rank li").eq(index_4).removeClass("show");
	index_4--;
	//document.title=index_4;
	if(index_4<0){
	clearInterval(songs_rcmd_timer);
}
}
,100);
}
}
);
	//排行榜-----------------$("#rank li").eq(0).find("a.musicName").prepend("<i class='first_place'>1</i>");
	$("#rank li").eq(1).find("a.musicName").prepend("<i class='second_place'>2</i>");
	$("#rank li").eq(2).find("a.musicName").prepend("<i class='third_place'>3</i>");
	for(var r=3;
	r<9;
	r++){
	$("#rank li").eq(r).find("a.musicName").prepend("<i>"+(r+1)+"</i>");
}
//九、精选集-------------------------------------------------------------------------------var oList_omnibus=document.getElementById("omnibus_list");
	var oI=oList_omnibus.getElementsByTagName("i")[0];
	var aSpan=oList_omnibus.getElementsByTagName("span");
	$("#omnibus_list .post_big a").hover(function(){
	$(this).find("i").stop(true,true).animate({
	left:"0px"}
,300);
}
,function(){
	$(this).find("i").stop(true,true).animate({
	left:"305px"}
,300,function(){
	oI.style.left="-305px";
}
);
}
);
	$("#omnibus_list .post_small a").hover(function(){
	$(this).find("span").stop(true,true).animate({
	left:"0px"}
,300);
}
,function(){
	$(this).find("span").stop(true,true).animate({
	left:"130px"}
,300,function(){
	for(var i=0;
	i<aSpan.length;
	i++){
	aSpan[i].style.left="-130px";
}
}
);
}
);
}
);
	//$(function(){
}
);
	window.onload//十、回到顶部---------------------------------------------------------------------------$("#toTop").click(function(){
	$("html,body").animate({
	scrollTop:"0px"}
,"slow");
	//点击音效$("#audioPlayer").attr({
	"src":"/wp-content/uploads/2015/01/1.mp3"}
);
	$("#audioPlayer")[0].play();
}
);
	//二维码$(".footer_cont_right a.twoCode").hover(function(){
	$(this).find("img.tCode").stop(true,true).fadeIn();
}
,function(){
	$(this).find("img.tCode").stop(true,true).delay(800).fadeOut();
}
);
	// mv页.js//十一、MV页面 js-------------------------------------------------------------------------$("#mv_rank_list ul li").hover(function(){
	$(this).css({
	"z-index":"6"}
).stop(true,true).animate({
	"left":"-10px","opacity":"1"}
,350).siblings().css({
	"z-index":"1"}
).stop(true,true).animate({
	"left":"0px","opacity":"0.5"}
,350);
}
,function(){
	$("#mv_rank_list ul li").css({
	"z-index":"1"}
).stop(true,true).animate({
	"left":"0px","opacity":"1"}
,350);
}
);
	$("#mv_classify_list ul li").hover(function(){
	$(this).stop(true,true).animate({
	"opacity":"1"}
,350).siblings().stop(true,true).animate({
	"opacity":"0.5"}
,350);
}
,function(){
	$("#mv_classify_list ul li").stop(true,true).animate({
	"opacity":"1"}
,350);
}
);
	$("#mvList .mv_rcmd").click(function(){
	var index_mv_rcmd1=$(this).index();
	$(this).find("span").addClass("active").parent().siblings("li").find("span").removeClass("active");
	$(this).find("i").addClass("on").parent().siblings("li").find("i").removeClass("on");
}
);
	//十二、MV视频播放器---------------------------------------------------------------------------------------------------//数组 保存 MV.urlvar arrSongs=["http://up.chshcms.com/v/url/0/aHR0cDovL3YueWlueXVldGFpLmNvbS92aWRlby8yMTczMzE3/yuedisk.mp4","http://up.chshcms.com/v/url/0/aHR0cDovL3YueWlueXVldGFpLmNvbS92aWRlby83NzIzNjg=/yuedisk.mp4","http://up.chshcms.com/v/url/0/aHR0cDovL3YueWlueXVldGFpLmNvbS92aWRlby8yMjM5ODI1/yuedisk.mp4"]//爱情大师 - 崔子格 匆匆那年 - 王菲 喜欢你 - 邓紫棋$("#mvList li.mv_rcmd").click(function(){
	var _index_songs=$(this).index();
	video[0].src=arrSongs[_index_songs];
	video[0].play();
	$(".playPause").css({
	"backgroundPosition":"-54px -10px"}
);
}
);
	$("#mv_rank_list ul li").click(function(){
	var index_mv_rcmd2=$(this).index();
	video[0].src=arrSongs[index_mv_rcmd2];
	video[0].play();
	$(".playPause").css({
	"backgroundPosition":"-54px -10px"}
);
}
);
	//MV视频播放器var video=$("#video");
	//video[0].volume="0.5";
	//播放暂停$(".playPause").click(function(){
	if(video[0].paused){
	//video 要带上 [0]video[0].play();
	$(this).css({
	"backgroundPosition":"-54px -10px"}
);
}
else{
	video[0].pause();
	$(this).css({
	"backgroundPosition":"-12px -10px"}
);
}
return false;
}
);
	//获取总时长 与 获取当前播放时间video.on("loadedmetadata",function(){
	var dur=changeTime(video[0].duration);
	$(".duration").text(dur);
}
);
	video.on("timeupdate",function(){
	var cur=changeTime(video[0].currentTime);
	$(".current").text(cur);
	var cur_pos=video[0].currentTime;
	//当前播放时间var dur_max=video[0].duration;
	//总时长,两者相除 求比例var scale=100*cur_pos/dur_max;
	$(".timeBar").css("width",scale+"%");
}
);
	//把获取的时间(单位为毫秒) 转化成秒 方法function changeTime(time){
	iNum=parseInt(time);
	var iM=toZero(Math.floor(time/60));
	var iS=toZero(Math.floor(time%60));
	return iM+":"+iS;
}
//补零function toZero(num){
	return num<=9?"0"+num:""+num;
}
//点击或拖动进度条var timeDrag=false;
	/* 拖动状态 */
$(".progressBar").mousedown(function(e){
	timeDrag=true;
	updatebar(e.pageX);
}
);
	$(document).mouseup(function(e){
	if(timeDrag){
	timeDrag=false;
	updatebar(e.pageX);
}
}
);
	$(document).mousemove(function(e){
	if(timeDrag){
	updatebar(e.pageX);
}
}
);
	//进度条 操作var updatebar=function(x){
	var progress=$(".progressBar");
	var maxduration=video[0].duration;
	//总时间var position=x-progress.offset().left;
	//点击或拖动的位置var percentage=100*position/progress.width();
	//限制拖动范围if(percentage>100){
	percentage=100;
}
if(percentage<0){
	percentage=0;
}
//拖动滚动条 currenttime 相应变化$(".timeBar").css("width",percentage+"%");
	video[0].currentTime=maxduration*percentage/100;
}
;
	//缓冲加载条var startBuffer=function(){
	var maxduration=video[0].duration;
	var currentBuffer=video[0].buffered.end(0);
	var percentage=100*currentBuffer/maxduration;
	$(".bufferBar").css("width",percentage+"%");
	if(currentBuffer<maxduration){
	setTimeout(startBuffer,500);
}
}
;
	setTimeout(startBuffer,500);
	//静音按钮$(".muted").click(function(){
	if(video[0].muted){
	$(this).css({
	"backgroundPosition":"-88px -10px"}
);
	video[0].muted=false;
}
else{
	$(this).css({
	"backgroundPosition":"-126px -10px"}
);
	video[0].muted=true;
}
return false;
}
);
	//音量条 点击或拖动var timeDrag2=false;
	/* 拖动状态 */
$(".volumeBar").mousedown(function(e){
	timeDrag2=true;
	updatebar2(e.pageX);
}
);
	$(document).mouseup(function(e){
	if(timeDrag2){
	timeDrag2=false;
	updatebar2(e.pageX);
}
}
);
	$(document).mousemove(function(e){
	if(timeDrag2){
	updatebar2(e.pageX);
}
}
);
	//音量条 操作var updatebar2=function(x){
	var progress=$(".volumeBar");
	var maxduration=video[0].duration;
	//总时间var position=x-progress.offset().left;
	//点击或拖动的位置var percentage=100*position/progress.width();
	//限制范围if(percentage>100){
	percentage=100;
}
if(percentage<0){
	percentage=0;
}
//拖动滚动条 currenttime 相应变化$(".volume").css("width",percentage+"%");
	video[0].volume=percentage/100;
}
;
	//全屏$(".fullscreen").on("click",function(){
	//兼容写法video[0].RequestFullScreen=video[0].RequestFullScreen||video[0].webkitRequestFullScreen||video[0].mozRequestFullScreen;
	//调用全屏方法video[0].RequestFullScreen();
	return false;
}
);
	

CSS代码(style.css):

/*首页样式(音乐馆样式)*/
html,body,header,nav,footer,div,ul,ol,li,p,form,input,a,span,em,i,strong,b,font,img{margin:0;padding:0;list-style:none;border:none;}
body{font-family:"微软雅黑";font-size:14px;height:800px;background:url(../images/bg.png);overflow-x:hidden;}
a{text-align:center;text-decoration:none;outline:none;}
input{outline:none;}
em{font-style:normal;}
/*滚动条*/
::-webkit-scrollbar{width:6px;height:6px;}
::-webkit-scrollbar-track-piece{background-color:transparent;}
body::-webkit-scrollbar-track-piece{background-color:#ccc;}
::-webkit-scrollbar-track-piece:no-button{}
::-webkit-scrollbar-thumb{background-color:#29944d;border-radius:2px;}
::-webkit-scrollbar-thumb:hover{background-color:#0eaf52;}
::-webkit-scrollbar-thumb:active{background-color:#0eaf52;}
/*/
滚动条*/
/*头部header*/
#header{width:100%;height:132px;position:relative;left:0;top:0;}
/*顶部导航*/
.nav_topbar{width:100%;min-width:1180px;height:30px;background:#fff;/*#333D46;*/
box-shadow:1px 1px 10px #112233;border-top:2px solid #0eaf52/*1ABC9C*/
;}
.nav_topbar_cont{width:1180px;height:32px;margin:0 auto;position:relative;left:0;top:0;}
.nav_topbar_cont ul li{height:32px;float:left;}
.nav_topbar_cont ul li a{width:70px;height:32px;display:block;line-height:32px;color:#666;font-size:12px;}
.nav_topbar_cont ul li a:hover{color:#ffae00;}
/*顶部导航 用户登录*/
.nav_topbar a.user_login{width:75px;height:30px;display:block;padding:0 5px 0 20px;position:absolute;right:65px;top:0;line-height:30px;color:#666;/*background:#1ABC9C;*/
 text-align:center;font-size:12px;z-index:6;background:url(../images/user.png) no-repeat 2px 6px;overflow:hidden;transition:.5s;-webkit-transition:.5s;}
.nav_topbar a.btn_active{background:#fff;}
.nav_topbar a.user_login i.arrow{width:10px;height:10px;display:inline-block;background:url(../images/icos.png) no-repeat -24px -9px;margin-left:5px;transition:.5s;-webkit-transition:.5s;/*用户登录按钮图标*/
}
.nav_topbar a.user_login:hover{color:#ff9d00;background:url(../images/user2.png) no-repeat 2px 6px;}
.nav_topbar a.user_login:hover i{background-position:-24px 4px;}
/*三角图标*/
.nav_topbar .user_login_box{width:200px;height:185px;border-bottom:3px solid #0eaf52/*1ABC9C*/
;position:absolute;right:65px;top:37px;z-index:12;background:#fff;padding:15px;padding-top:0;color:#999;box-shadow:1px 1px 10px #112233;}
.shadow_cover{width:100%;height:12px;background:#fff;position:absolute;left:0;top:-12px;}
.user_login_inner .ipt{width:100%;height:32px;background:rgb(249,249,249);margin:5px 0;font-weight:500;text-indent:10px;color:#999;border:1px solid #ddd;border-radius:3px;line-height:32px;}
#rememberme{margin:5px 5px 0 0;}
.user_login_inner input.login_btn{width:100%;height:35px;display:block;background:#0eaf52/*1ABC9C*/
;border-radius:2px;margin:10px 0;color:#fff;font-weight:bold;cursor:pointer;font-family:"微软雅黑";}
.user_login_inner input.login_btn:hover{background:#ffae00;}
.user_login_inner a{color:#666/*1ABC9C*/
;}
.user_login_inner a:hover{color:#f60;}
.user_login_inner a i.sign{width:18px;height:15px;display:inline-block;background:url(../images/icos.png) no-repeat 0 0;vertical-align:-5px;}
.user_login_inner a:hover i.sign{background-position:0 -15px;}
.user_login_inner a i.lock{width:18px;height:17px;display:inline-block;background:url(../images/icos.png) no-repeat 0 -29px;vertical-align:-5px;}
.user_login_inner a:hover i.lock{background-position:0 -47px;}
/*顶部导航 用户登录 结束*/
#headCont{width:1180px;height:100px;margin:0 auto;position:relative;}
/*LOGO*/
.main_nav{width:1178px;height:66px;position:relative;left:1px;top:0;background:url(../images/logoName.png) no-repeat 100px 6px;box-shadow:0 0 3px #dfefdf;}
.main_nav .logo{width:60px;height:60px;padding:3px;position:absolute;left:16px;top:0px;z-index:5;}
.main_nav .logo img{animation:wm 2s infinite linear;-webkit-animation:wm 2s infinite linear;}
@keyframes wm{from{transform:rotate(0deg);}
to{transform:rotate(-360deg);}
}
@-webkit-keyframes wm{from{-webkit-transform:rotate(0deg);}
to{-webkit-transform:rotate(-360deg);}
}
.main_nav .logoName{width:120px;height:60px;position:absolute;left:98px;top:5px;}
/*主导航*/
.main_nav ul.navigation{width:600px;height:64px;position:absolute;left:220px;top:2px;}
.main_nav ul.navigation li{height:64px;float:left;-moz-perspective:700px;-webkit-perspective:700px;-o-perspective:700px;}
.main_nav ul.navigation li a{float:left;line-height:64px;position:relative;left:0;top:0;font-size:16px;color:#555;font-weight:bold;text-shadow:1px 1px 1px #112233;-moz-transform-style:preserve-3d;-webkit-transform-style:preserve-3d;-o-transform-style:preserve-3d;transition:.4s;-moz-transform-origin:center center -32px;-webkit-transform-origin:center center -32px;-o-transform-origin:center center -32px;}
.main_nav ul.navigation li a span{width:120px;height:64px;float:left;text-align:center;-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-o-backface-visibility:hidden;}
.main_nav ul.navigation li a span:nth-of-type(2){position:absolute;left:0;top:-64px;color:#FFAE00;font-size:18px;-moz-transform-origin:bottom;-webkit-transform-origin:bottom;-moz-transform:rotateX(90deg);-webkit-transform:rotateX(90deg);-o-transform:rotateX(90deg);}
.main_nav ul.navigation li a:hover{background:#0eaf52/*10ad8e*/
;color:#ffae00;-moz-transform:rotateX(-90deg);-webkit-transform:rotateX(-90deg);}
.main_nav ul.navigation li a.on{background:#0eaf52;color:#ffae00;-moz-transform:rotateX(-90deg);-webkit-transform:rotateX(-90deg);}
/*主导航 结束*/
/*用户登录信息*/
.main_nav .user_info{width:285px;height:64px;position:absolute;right:0;top:0;}
.user_info .user_photo{width:40px;height:40px;border-radius:50%;float:left;margin-top:15px;overflow:hidden;}
.user_info a.nikeName{display:block;float:left;font-size:18px;color:#0eaf52;margin:22px 5px 0 5px;}
.user_info a.nikeName:hover{color:#0dde65;}
.user_info a.user_info_list{width:40px;height:40px;display:block;float:left;margin-top:15px;border-right:1px solid #efefef;}
.user_info a.user_info_list:last-child{border:none;}
.user_info a.user_info_list:hover span{color:#0eaf52;}
.user_info a.user_info_list span{width:40px;height:20px;display:block;color:#123;}
.user_info a.user_info_list span:last-child{color:#999;}
/*用户登录信息 结束*/
/*次级导航*/
nav.sub_nav{width:1180px;height:34px;background:#333D46;position:absolute;left:0;bottom:0;z-index:10;}
.nav_list{width:1180px;height:34px;margin:0 auto;}
/*次级导航 在页面滚动到一定位置时,转变为相对浏览器窗口定位显示*/
nav.fixed{width:100%;height:40px;position:fixed;top:0;left:0;z-index:15;opacity:.9;background:rgba(51,61,71,.7);}
nav.fixed ul li,nav.fixed ul li a.smallogo,nav.fixed ul li a.home,nav.fixed ul .sub_list,nav.fixed ul .sub_list p a{height:40px;line-height:40px;font-size:16px;}
nav.fixed ul li a.home{background-position:-154px 12px;}
nav.fixed ul .search_box{height:32px;padding:8px 78px 0 0;}
nav.fixed ul .search_box .hot_search{top:32px;}
nav.fixed ul .search_box .hot_search>div.open{transition:0s;top:8px;}
/*次级导航 list*/
.sub_nav ul li{height:34px;float:left;text-align:center;}
.sub_nav ul li a{width:100px;height:34px;display:block;color:#fff;line-height:34px;}
.sub_nav ul li a.smallogo{opacity:0;overflow:hidden;}
/*小LOGO图标,初始隐藏*/
.sub_nav ul li a.smallogo span{width:40px;height:40px;display:block;margin:0 auto;background:url(../images/logo2.png) no-repeat;animation:wm 2s infinite linear;-webkit-animation:wm 2s infinite linear;}
@keyframes wm2{from{transform:rotate(0deg);}
to{transform:rotate(-360deg);}
}
@-webkit-keyframes wm2{from{-webkit-transform:rotate(0deg);}
to{-webkit-transform:rotate(-360deg);}
}
.sub_nav ul li a.home{width:120px;text-indent:20px;background:#FFAE00 url(../images/icos.png) no-repeat -154px 9px;}
.sub_nav ul .sub_list{width:610px;height:34px;float:left;position:relative;left:0;top:0;}
.sub_nav ul .sub_list p{position:absolute;left:0;top:0;display:none;}
.sub_nav ul .sub_list p.active{display:block;}
.sub_nav ul .sub_list p a{width:120px;height:34px;display:block;float:left;color:#fff;line-height:34px;}
.sub_nav ul .sub_list p a.on,.sub_nav ul .sub_list p a:hover{color:#ffae00;background:#123;}
/*搜索框*/
.search_box{width:240px;height:29px;float:right;padding:5px 78px 0 0;position:relative;left:0;top:0;z-index:2;}
.search_box input.search{width:149px;height:24px;line-height:24px;float:right;padding:0 8px;color:#666;background:#ededed;}
.search_box input.search_btn{width:40px;height:24px;float:right;cursor:pointer;background:#FFAE00 url(../images/icos.png) no-repeat -173px -26px;}
.search_box input.search_btn:hover{background-color:#ed9500;}
/*搜索下拉菜单*/
.hot_search{width:205px;position:absolute;left:35px;top:29px;box-shadow:0 4px 8px rgba(0,0,0,0.15);}
.hot_search div{position:absolute;right:0px;top:24px;-moz-transform-style:preserve-3d;-webkit-transform-style:preserve-3d;-ms-transform-style:preserve-3d;-moz-transform-origin:top;-webkit-transform-origin:top;-ms-transform-origin:top;-moz-transform:rotateX(-120deg);-webkit-transform:rotateX(-120deg);-ms-transform:rotateX(-120deg);-moz-perspective:800px;-webkit-perspective:800px;-ms-perspective:800px;transition:.5s;background:rgba(255,255,255,.8);}
.hot_search>div{top:0px;z-index:-1;}
.hot_search .open{-moz-animation:open 2s;-webkit-animation:open 2s;-ms-animation:open 2s;-moz-transform:rotateX(0deg);-webkit-transform:rotateX(0deg);-ms-transform:rotateX(0deg);}
.hot_search span{width:205px;height:23px;border-top:1px dashed #ababab;display:block;text-indent:15px;line-height:24px;font-size:12px;color:#666;overflow:hidden;transition:.5s;box-shadow:inset 0 0 30px 20px rgba(0,0,0,.6);}
.hot_search .open>span{box-shadow:inset 0 0 30px 10px rgba(0,0,0,0);}
.hot_search>div.open{top:5px;}
.hot_search>div>span{height:24px;border:none;}
.hot_search span:hover{background:#0eaf52;text-indent:21px;color:#fff;}
.hot_search span:hover a{color:#fff;}
.hot_search span a{width:112px;display:block;float:left;color:#666;text-align:left;}
.hot_search span a:hover{color:#fff;}
.hot_search span font{width:80px;height:23px;line-height:23px;float:right;text-align:center;}
/*搜索下拉菜单 展开动画*/
@-moz-keyframes open{0%{-moz-transform:rotateX(-120deg);}
40%{-moz-transform:rotateX(25deg);}
60%{-moz-transform:rotateX(-15deg);}
80%{-moz-transform:rotateX(5deg);}
100%{-moz-transform:rotateX(0deg);}
}
@-webkit-keyframes open{0%{-webkit-transform:rotateX(-120deg);}
40%{-webkit-transform:rotateX(25deg);}
60%{-webkit-transform:rotateX(-15deg);}
80%{-webkit-transform:rotateX(5deg);}
100%{-webkit-transform:rotateX(0deg);}
}
/*搜索下拉菜单 结束*/
/*头部header 结束*/
/*轮播图 开始*/
.main_banner{width:100%;height:375px;}
.main_banner_wrap{width:1180px;height:375px;position:relative;background:#112233/*333D46*/
;margin:0 auto;overflow:hidden;box-shadow:0px 1px 2px #c5c5c5;}
#myCanvas{position:absolute;z-index:13;opacity:0.8;cursor:pointer;-webkit-animation:roll 3s;animation:roll 3s;}
@-webkit-keyframes roll{from{-webkit-transform:rotate(120deg);opacity:0;}
to{-webkit-transform:rotate(0deg);opacity:0.8;}
}
@keyframes roll{from{transform:rotate(120deg);opacity:0;}
to{transform:rotate(0deg);opacity:0.8;}
}
.banner_btn{/*a 标签 按钮*/
width:255px;height:240px;position:absolute;display:block;z-index:9;top:20px;}
.btn_next{right:20px;}
.banner_btn span{width:50px;height:100px;display:block;position:absolute;left:110px;top:70px;opacity:0;transition:0.5s;background:url(../images/bannerBtn.png) no-repeat 0 0;}
.btn_next span{background-position:-50px 0;}
.main_banner_box:hover .banner_btn_arrow{opacity:0.6;}
.banner_btn span i{width:50px;height:100px;display:block;background:url(../images/bannerBtn.png) no-repeat 0 0;}
.btn_next span i{background-position:-50px 0;}
.banner_btn:hover i{-webkit-animation:arrow 0.5s infinite alternate ease-in-out;-moz-animation:arrow 0.5s infinite alternate ease-in-out;}
@-webkit-keyframes arrow{from{-webkit-transform:scale(1);opacity:1;}
to{-webkit-transform:scale(1.5);opacity:0.2;}
}
@-moz-keyframes arrow{from{-moz-transform:scale(1);opacity:1;}
to{-moz-transform:scale(1.5);opacity:0.2;}
}
.main_banner_box{width:1200px;height:280px;margin:40px auto 0;position:relative;z-index:0;/*-webkit-倒影样式*/
-webkit-box-reflect:below 0 -webkit-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,.2) 100%);}
/*火狐倒影图层样式*/
.main_banner_box p#rflt{width:1200px;height:280px;position:absolute;left:0;top:280px;background:-moz-element(#m_box) no-repeat;-moz-transform:scaleY(-1);opacity:0.2;}
/*火狐倒影图层样式*/
.main_banner li{position:absolute;background:#000;overflow:hidden;box-shadow:0 4px 8px rgba(0,0,0,0.15);}
/*给每张图片初始设置不同宽高,层级,位置*/
.main_banner li#imgCard0{width:670px;height:280px;z-index:5;left:255px;top:0px;opacity:1;background:#333d46;}
.main_banner li#imgCard1{width:580px;height:240px;z-index:1;left:600px;top:20px;opacity:1;background:#333d46;}
.main_banner li#imgCard2{/*初始在背后,透明度为0*/
width:450px;height:180px;z-index:1;left:0px;top:60px;opacity:0;background:#333d46;}
.main_banner li#imgCard3{/*初始在背后,透明度为0*/
width:450px;height:180px;z-index:1;left:0px;top:60px;opacity:0;background:#333d46;}
.main_banner li#imgCard4{width:580px;height:240px;z-index:2;left:0px;top:20px;opacity:1;background:#333d46;}
.main_banner li img{width:100%;height:100%;}
.main_banner li span{/*遮罩层*/
width:100%;height:100%;position:absolute;top:0;left:0;z-index:1;background:#000;opacity:0;filter:alpha(opacity=0);color:#fff;font-size:30px;line-height:120px;text-align:center;}
.main_banner li p{width:100%;height:50px;position:absolute;left:0;bottom:-50px;background:rgba(0,0,0,0.7);color:#fff;text-indent:38px;line-height:50px;font-size:25px;}
/*指示器按钮*/
.btn_list{text-align:center;position:relative;left:0;top:6px;z-index:10;}
.btn_list span{width:15px;height:15px;display:inline-block;margin:15px 5px;background:#787d82;border-radius:50%;cursor:pointer;}
.btn_list span.curr{background:#FFAE00;}
/*轮播图 结束*/
/*各区块公共样式 开始*/
.new_common{width:1180px;height:350px;margin:35px auto 0;background:#fff;box-shadow:0px 1px 2px #c5c5c5;position:relative;left:0;top:0;}
.new_common_title{width:1175px;height:35px;border-left:5px solid #f00;border-bottom:1px solid #efefef;background:#fff;}
.new_common_title span{width:110px;height:21px;display:inline-block;float:left;margin:8px 0 0 8px;color:#333;font-size:18px;background:url(../images/index_title_bg.png) no-repeat 6px -1px;background-size:79%;}
.new_common_title a.more{width:40px;height:14px;display:inline-block;margin-top:12px;float:left;background:url(../images/index_title_bg.png) no-repeat 0 -272px;}
/*各区块公共样式 结束*/
/*在线首发 开始*/
.new_songs_title em{width:25px;height:21px;float:right;margin:9px 12px 0 0;color:#0eaf52;}
.new_songs_title em.pageNum{width:12px;margin-right:2px;}
.new_songs_title a{width:25px;height:21px;display:inline-block;float:right;margin:9px 20px 0 0;background:url(../images/new_songs_btn.png) no-repeat 5px 0;}
.new_songs_title a#albumNext{background-position:-24px 0;}
.new_songs_title a#albumPrev:hover{background-position:5px -21px;}
.new_songs_title a#albumNext:hover{background-position:-24px -21px;}
/*新歌首发 歌单*/
.new_songs ul{width:100%;padding:15px 14px;position:absolute;left:0;top:35px;}
.new_songs ul li{width:220px;height:300px;float:left;margin-right:13px;position:relative;left:0;top:0;-moz-perspective:2000px;-webkit-perspective:2000px;-moz-transform-style:preserve-3d;-webkit-transform-style:preserve-3d;}
.new_songs ul li .album{position:absolute;left:0;top:0;opacity:0;-moz-transform:rotateY(90deg);-webkit-transform:rotateY(90deg);transition:.5s linear;}
.new_songs ul.show{position:relative;left:0;top:0;z-index:9;}
.new_songs ul.show li .album{position:absolute;left:0;top:0;opacity:1;-moz-transform:rotateY(0deg);-webkit-transform:rotateY(0deg);}
.new_songs ul li .album p{width:220px;height:220px;position:relative;left:0;top:0;overflow:hidden;}
.new_songs ul li .album p font{width:38px;height:38px;position:absolute;right:4px;top:-2px;background:url(../images/hot.png) no-repeat;color:#fff;font-size:12px;line-height:27px;text-align:left;text-indent:5px;}
.new_songs ul li .album p a{width:220px;height:220px;display:block;}
.new_songs ul li .album p a img{transition:.5s;}
.new_songs ul li .album p a span{width:220px;height:50px;display:block;background:rgba(0,0,0,.6);position:absolute;left:0;bottom:-60px;padding:5px 0;transition:.5s;}
.new_songs ul li .album p a:hover img{transform:scale(1.1);-webkit-transform:scale(1.1);}
.new_songs ul li .album p a:hover span{bottom:0px;}
.new_songs ul li .album p a span em{height:25px;line-height:25px;display:block;text-align:left;text-indent:15px;font-family:"宋体";}
.new_songs ul li .album p a span em:nth-of-type(1){color:#0CC65B;font-size:16px;}
.new_songs ul li .album p a span i{width:20px;height:20px;display:block;position:absolute;right:20px;top:20px;background:url(../images/icon_play.png) no-repeat 0 0;}
.new_songs ul li .album p a span i:hover{background-position:-20px 0;}
.new_songs ul li .album a{width:110px;height:65px;display:inline-block;background:#0eaf52;float:left;text-shadow:0 0 1px #112233;transition:.5s;}
.new_songs ul li .album a:nth-of-type(1){background:#0DA44D;}
.new_songs ul li .album a:hover{background:#ffae00;}
.new_songs ul li .album a span{height:30px;display:block;line-height:35px;color:#fff;}
.new_songs ul li .album a strong{height:35px;display:block;line-height:30px;color:#fff;}
.new_songs ul li .album a strong em{font-size:12px;}
/*在线首发 结束*/
/*mv首发 开始*/
.new_mv{height:332px;background:none;background:rgba(255,255,255,.4);overflow:hidden;}
.new_mv_title{border-left:5px solid #FF7800;}
.new_mv_title span{background:url(../images/index_title_bg.png) no-repeat 6px -25px;background-size:79%;}
.new_mv_title ul{float:right;margin-right:5px;}
.new_mv_title ul li{width:50px;height:35px;float:left;text-align:center;}
.new_mv_title ul li a{height:14px;display:block;border-right:1px solid #999;margin-top:11px;line-height:12px;color:#0eaf52;}
.new_mv_title ul li:last-child a{border:0;}
.new_mv_title ul li a.cur,.new_mv_title ul li a:hover{text-decoration:underline;}
.mvList{width:1175px;height:264px;padding:15px 14px;display:none;}
/*MV分类切换动画*/
.new_mv_body .curShow{-moz-animation:curShow 1s forwards;-webkit-animation:curShow 1s forwards;}
@-moz-keyframes curShow{from{-moz-transform:translateX(35px);}
to{-moz-transform:translateX(0px);}
}
@-webkit-keyframes curShow{from{transform:translateX(35px);}
to{transform:translateX(0px);}
}
/*MV 图片*/
.mvList ul{width:1200px;}
.mvList ul li{width:220px;height:125px;position:relative;left:0;top:0;background:#0eaf52;float:left;margin:0 13px 13px 0;}
.mvList ul li b{position:absolute;right:10px;top:0;z-index:10;width:32px;height:21px;display:block;background:url(../images/today.jpg) no-repeat;}
.mvList ul li a strong{position:absolute;left:10px;color:#fff;font-size:12px;font-weight:normal;transition:.5s;}
.mvList ul li a strong:nth-of-type(1){bottom:20px;}
.mvList ul li a strong:nth-of-type(2){bottom:4px;color:#0eaf52;}
.mvList ul li a span{width:200px;height:115px;position:absolute;left:-2px;top:-2px;display:block;text-align:left;padding:5px 10px;border:2px solid #fff;box-shadow:0 0 1px #ddd;transition:.5s;}
.mvList ul li a span font{height:20px;color:#fff;display:block;opacity:0;font-size:12px;transition:.5s;}
.mvList ul li a span font:nth-of-type(1){font-weight:bold;}
.mvList ul li a span font:nth-of-type(2){height:64px;font-size:10px;}
.mvList ul li a span font:nth-of-type(2) i{width:49px;height:49px;display:block;margin:15px auto;background:url(../images/mvPlayIcon.png) no-repeat;transition:1s;}
.mvList ul li a span font:nth-of-type(3) i{width:14px;height:14px;display:inline-block;vertical-align:-3px;margin-right:4px;background:url(../images/icos.png) no-repeat -184px -53px;}
.mvList ul li a span font:nth-of-type(3) em{float:right;}
.mvList ul li a:hover strong{opacity:0;}
.mvList ul li a:hover span{background:rgba(0,0,0,.5);box-shadow:0 0 5px #112233;}
.mvList ul li a:hover font{opacity:1;}
.mvList ul li a:hover span font:nth-of-type(2) i{-moz-transform:rotate(720deg);-webkit-transform:rotate(720deg);-webkit-transform-origin:center center 0;}
/*mv首发 结束*/
/*最新歌曲推荐 开始*/
.songs_rcmd_title{width:1180px;height:35px;margin:35px auto 0;box-shadow:0px 1px 2px #c5c5c5;/*border-top:1px solid #efefef;*/
}
/*标题*/
.rcmd_title{width:390px;height:35px;float:left;background:#fff;}
.rcmd_left_title{border-left:5px solid #F3508D;}
.rcmd_center_title{border-left:5px solid #0DAD51;}
.rcmd_right_title{border-left:5px solid #27A9E3;}
/*标题文字*/
.rcmd_left_title span,.rcmd_center_title span,.rcmd_right_title span{width:110px;height:24px;display:inline-block;margin:7px 0 0 12px;float:left;background:#fff url(../images/index_title_bg.png) no-repeat 0 -48px;background-size:79%;}
.rcmd_center_title span{background-position:0 -225px;}
.rcmd_right_title span{background-position:0 -245px;background-size:100%;}
.rcmd_right_title{width:385px;}
.rcmd_left_title a.play_btn,.rcmd_center_title a.play_btn,.rcmd_right_title a.play_btn{width:24px;height:24px;display:inline-block;float:left;margin-top:6px;background:url(../images/play_btn1.png) no-repeat;}
.rcmd_left_title a.add_btn,.rcmd_center_title a.add_btn,.rcmd_right_title a.add_btn{width:24px;height:24px;display:inline-block;float:left;margin:6px 0 0 10px;background:url(../images/add_btn1.png) no-repeat;transition:1.2s;}
.rcmd_left_title a.play_btn:hover,.rcmd_center_title a.play_btn:hover,.rcmd_right_title a.play_btn:hover{background-image:url(../images/play_btn2.png);}
.rcmd_left_title a.add_btn:hover,.rcmd_center_title a.add_btn:hover,.rcmd_right_title a.add_btn:hover{background-image:url(../images/add_btn2.png);-moz-transform:rotate(720deg);-webkit-transform:rotate(720deg);}
.rcmd_left_title a.more,.rcmd_center_title a.more,.rcmd_right_title a.more{/*更多*/
width:40px;height:14px;display:inline-block;margin:12px 16px 0 0;float:right;background:url(../images/index_title_bg.png) no-repeat 0 -272px;}
/*歌曲推荐 内容部分*/
.songs_rcmd{width:1180px;height:430px;/*background:rgb(237,237,237);*/
background:url(../images/songs_rcmd_bg.jpg);margin:0 auto;position:relative;background-attachment:fixed;background-size:cover;overflow:hidden;box-shadow:0px 2px 4px #c5c5c5;}
.songs_rcmd_cont{width:1200px;height:430px;position:absolute;left:0;top:0;/*background:url(../images/bg_cover2.png) 1px 0;*/
}
ul.rcmd_cont{width:394px;height:100%;border-right:1px solid rgba(0,0,0,.3);float:left;}
ul.rcmd_right{width:390px;height:100%;border:0;}
ul.rcmd_cont{-moz-perspective:600px;-moz-transform-style:preserve-3d;-webkit-perspective:600px;-webkit-transform-style:preserve-3d;}
ul.rcmd_cont li{width:92%;height:40px;line-height:40px;background:rgba(17,34,51,0.1);margin:5px auto;box-shadow:0 0 1px #fff;opacity:0;}
ul.rcmd_cont li.show{-moz-animation:songs_rcmd 2s forwards;-webkit-animation:songs_rcmd 2s forwards;opacity:1;}
@-moz-keyframes songs_rcmd{/*歌单出场动画*/
0%{-moz-transform:rotateY(120deg);}
40%{-moz-transform:rotateY(-30deg);}
60%{-moz-transform:rotateY(20deg);}
80%{-moz-transform:rotateY(-10deg);}
100%{-moz-transform:rotateY(0deg);}
}
@-webkit-keyframes songs_rcmd{0%{-webkit-transform:rotateY(120deg);}
40%{-webkit-transform:rotateY(-30deg);}
60%{-webkit-transform:rotateY(20deg);}
80%{-webkit-transform:rotateY(-10deg);}
100%{-webkit-transform:rotateY(0deg);}
}
ul.rcmd_cont li:first-child{margin-top:15px;}
ul.rcmd_cont li:hover{background:rgba(255,255,255,0);box-shadow:0 0 2px 2px #fff;}
ul.rcmd_cont li a{width:225px;height:40px;display:block;float:left;text-align:left;color:#fff;overflow:hidden;/*text-shadow:0 0 2px #112233;*/
}
/*歌曲名称*/
ul.rcmd_cont li a.musicName{color:#fff;margin-left:30px;}
ul.rcmd_cont li a.musicName:hover{color:#ffae00;}
ul.rcmd_cont li em{color:#fff;padding:0 5px;}
ul.rcmd_cont li a.playIcon,ul.rcmd_cont li a.shareIcon{width:25px;height:25px;display:inline-block;margin-right:10px;float:right;margin-top:12px;background:url(../images/icos.png) no-repeat -184px -73px;}
ul.rcmd_cont li a.playIcon:hover{background-position:-184px -119px;}
ul.rcmd_cont li a.shareIcon{margin-right:30px;background-position:-185px -94px;}
ul.rcmd_cont li a.shareIcon:hover{background-position:-185px -140px;}
ul.rcmd_cont li i{padding:0 7px 0 4px;margin-right:10px;border-radius:50%;text-shadow:none;}
ul.rcmd_cont li i.first_place{background:#CF0B0E;color:#fff;}
ul.rcmd_cont li i.second_place{background:#F3B502;color:#fff;}
ul.rcmd_cont li i.third_place{background:#15ACCB;color:#fff;}
/*最新歌曲推荐 结束*/
/*精选集 开始*/
.omnibus{width:1180px;margin:0 auto;/*background:#22AF32;*/
}
.omnibus_cont{width:780px;height:380px;float:left;overflow:hidden;}
.omnibus_title{width:775px;border-left:5px solid #0DAD51;border-bottom:1px solid #efefef;}
.omnibus_title span{background-position:0 -74px;}
.omnibus_title a.more{float:right;margin-right:20px;}
.omnibus_cont ul{width:800px;padding:15px 0 15px 15px;}
.omnibus_cont ul li{width:130px;height:160px;float:left;margin-right:17px;overflow:hidden;}
.omnibus_cont ul li.post_big{width:305px;height:320px;}
.omnibus_cont ul li a{color:#0eaf52;font-size:12px;line-height:27px;}
.omnibus_cont ul li a:hover{text-decoration:underline;}
.omnibus_cont ul li.post_big>a{width:305px;height:290px;display:block;position:relative;left:0;top:0;}
.omnibus_cont ul li.post_big>a i{width:305px;height:290px;display:block;position:absolute;left:-305px;top:0;background:rgba(0,0,0,.2);}
.omnibus_cont ul li.post_small>a{width:130px;height:130px;display:block;position:relative;left:0;top:0;}
.omnibus_cont ul li.post_small>a span{width:130px;height:130px;display:block;position:absolute;left:-130px;top:0;background:rgba(0,0,0,.2);}
/*精选集 结束*/
/*热门歌手 开始*/
.hot_singer_cont{width:380px;height:380px;float:right;overflow:hidden;}
.hot_singer_title{width:375px;border-left:5px solid #0DAD51;border-bottom:1px solid #efefef;}
.hot_singer_title span{background-position:0 -223px;background-size:100%;}
.hot_singer_title a.more{float:right;margin-right:20px;}
.hot_singer_cont ul.singer_list{width:320px;padding:30px 50px 0px 50px;border-bottom:1px dotted #ddd;}
.hot_singer_cont ul.singer_list li{width:74px;height:120px;float:left;margin-right:30px;}
.hot_singer_cont ul.singer_list li a.singerPhoto{width:70px;height:70px;display:block;border-radius:50%;border:2px solid #0eaf52;overflow:hidden;transition:.3s;}
.hot_singer_cont ul.singer_list li a.singerPhoto:hover{box-shadow:0 0 10px #0eaf00;}
.hot_singer_cont ul.singer_list li a.singer{width:78px;height:40px;display:block;border-radius:0;line-height:40px;color:#0eaf52;font-size:12px;}
.hot_singer_cont ul.singer_list li a.singer:hover{text-decoration:underline;}
/*分类*/
.hot_singer_cont ul.singer_classify{width:400px;padding:10px 0 0 20px;}
.hot_singer_cont ul.singer_classify li{width:70px;height:20px;float:left;margin-bottom:8px;}
.hot_singer_cont ul.singer_classify li a{color:#999;font-size:12px;font-family:"宋体";}
.hot_singer_cont ul.singer_classify li a:hover{color:#333;}
/*热门歌手 结束*/
/*网站底部 开始*/
.footer{width:100%;height:100px;background:#fff;box-shadow:0 0 2px #c5c5c5;margin-top:35px;border-bottom:2px solid #0eaf52;}
.footer_cont{width:1180px;height:100px;margin:0 auto;position:relative;left:0;top:0;background:url(../images/flag.jpg) no-repeat 789px 35px;}
.footer_cont_left{width:780px;height:80px;margin-top:15px;float:left;}
.footer_cont_left p{width:100%;height:35px;text-align:center;font-size:12px;padding-top:5px;color:#666;}
.footer_cont_left a{color:#0eaf52;}
.footer_cont_left p:first-child a{width:70px;height:25px;display:inline-block;line-height:20px;margin-top:17px;color:#666;}
/*右侧*/
.footer_cont_right{width:330px;height:40px;margin-top:15px;float:right;padding:20px 0 0 50px;}
.footer_cont_right span{width:80px;height:32px;display:block;float:left;line-height:32px;font-size:16px;text-align:center;color:#123;}
.footer_cont_right ul li{float:left;margin-right:5px;}
.footer_cont_right ul li a{width:32px;height:32px;display:block;position:relative;left:0;top:0;border-radius:50%;}
.footer_cont_right ul li:nth-of-type(1) a{background:url(../images/index1.png) no-repeat;}
.footer_cont_right ul li:nth-of-type(2) a{background:url(../images/index2.png) no-repeat;}
.footer_cont_right ul li:nth-of-type(3) a{background:url(../images/index3.png) no-repeat;}
.footer_cont_right ul li:nth-of-type(4) a{background:url(../images/index4.png) no-repeat;}
.footer_cont_right ul li:nth-of-type(5) a{background:url(../images/index5.png) no-repeat;}
.footer_cont_right ul li span{width:32px;height:32px;display:block;border-radius:50%;position:absolute;left:0;top:0;background:rgba(0,0,0,0);transition:.2s;}
.footer_cont_right ul li a:hover span{background:rgba(0,0,0,0.3);}
#footer img.tCode{display:none;position:absolute;left:-34px;top:-105px;border:1px solid #555;}
/*回到顶部*/
#toTop{width:50px;height:50px;position:absolute;cursor:pointer;left:0;top:0;left:48%;top:-25px;background:url(../images/toTop.png) no-repeat;}
/*网站底部 结束*/
附件:下载该文件资源,减少时间成本(增值服务)
留言
该资源可下载
File Source
.rar
332.20 KB
Html 时钟特效
最新结算
jquery虚拟键盘中文打字效果js代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
jquery虚拟键盘中文打字效果js代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
HTML5实现CSS滤镜图片切换特效代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
jQuery头像裁剪插件cropbox js代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery头像裁剪插件cropbox js代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery+css3实现信封效果
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
我们力求给您提供有用的文章,再此基础上,会附加营收资源,不做任何广告,让平台可以更好发展 若您发现您的权利被侵害,或使用了您的版权,请发邮件联系 sunlifel@foxmail.com ggbig觉得 : 不提供源码的文章不是好文章
合作伙伴
联系我们
  • QQ:21499807
  • 邮箱:sunlifel@foxmail.com
  • QQ扫一扫加QQ
    QQ扫一扫
Copyright 2023-2024 ggbig.com·皖ICP备2023004211号-1
打赏文章