最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

JSHTML5音乐天气播放器(Ajax获取天气信息)_javascript技巧

来源:动视网 责编:小采 时间:2020-11-27 21:09:44
文档

JSHTML5音乐天气播放器(Ajax获取天气信息)_javascript技巧

JSHTML5音乐天气播放器(Ajax获取天气信息)_javascript技巧:晚上要考软件工程,实在不想复习。写个播放器吧,这个只是个用来学习的小Demo,众多不完善之处,下面贴出源代码,如果要转载,请加上版权声明PS:因为Ajax涉及到跨域获取天气信息,有两个版本,一个是直接跨域,IE10支持,其他的浏览器要改配置。另一个是服务
推荐度:
导读JSHTML5音乐天气播放器(Ajax获取天气信息)_javascript技巧:晚上要考软件工程,实在不想复习。写个播放器吧,这个只是个用来学习的小Demo,众多不完善之处,下面贴出源代码,如果要转载,请加上版权声明PS:因为Ajax涉及到跨域获取天气信息,有两个版本,一个是直接跨域,IE10支持,其他的浏览器要改配置。另一个是服务


晚上要考软件工程,实在不想复习。写个播放器吧,这个只是个用来学习的小Demo,众多不完善之处,下面贴出源代码,如果要转载,请加上版权声明

PS:因为Ajax涉及到跨域获取天气信息,有两个版本,一个是直接跨域,IE10支持,其他的浏览器要改配置。另一个是服务器端的weather.php,获取天气信息返回json。
weather.php就不写了,里面的对应路径存放对应的文件

演示地址:
http://569375.ichengyun.net/fm/

实现功能:
音乐播放,进度调节(滑动模块),音量条件,音乐随机选择,背景图片,图片预加载,音乐预加载,天气Ajax获取
音乐列表使用的json处理(也可以理解是hash表)
代码如下:



音乐天气




/*
版权声明
作者:EI Nino
Email:Jinyachen@gmail.com
*/
var music ='';
var musicBox ='';
var musicPlay='';
var musicNext='';
var musicV='';
var musicProcess='';
var musicSlide='';
var musicSlideLeft=0;
var musicCtime='';
var musicEtime='';
var musicVolume='';
var musicVolumeSlide='';
var mouseX='';
var mouseY='';
var mouseDown=false;
var bdy='';
var backgroundImages=new Array();
var backgroundNumber=1;
var songNumver=1;
var playList=new Array();
var nextSong='';
var songs=new Array();
//**************************************//
//INIT WEB
//*************************************//
function init(){
//**************************************//
//Musci Box
//*************************************//
musicBox = document.getElementById("music-box");
musicPlay= document.getElementById('music-play');
musicNext= document.getElementById('music-next');
musicCtime=document.getElementById('music-ctime');
musicEtime=document.getElementById('music-etime');
musicSlide=document.getElementById('music-process-slide');
musicProcess=document.getElementById('music-process-p');
musicVolume=document.getElementById('music-volume-v');
musicVolumeSlide=document.getElementById('music-volume-slide');
musicSlide.style.marginLeft="0px";
musicProcess.style.width="270px";
bdy=document.getElementsByTagName('body');
bdy=bdy[0];
var screenH = window.screen.height;
var screenW = document.body.clientWidth;
//Background cache //
backgroundNumber =Math.ceil(Math.random()*10);
backgroundImages[0] =new Image();
backgroundImages[1]= new Image();
backgroundImages[0].src= "./rain/"+backgroundNumber+".jpg";
backgroundImages[1].src= "./rain/"+(backgroundNumber >= 10 ? 1:backgroundNumber+1)+".jpg";
bdy.style.background="url("+backgroundImages[0].src+") top";
//*****************//
music = document.getElementsByTagName('audio');
music = music[0];
music.autobuffer=true;
setInterval(mProcess,1000);
musicProcess.addEventListener('mousedown',mSlideProcessDown);
musicProcess.addEventListener('mousemove',mSlideProcessMove);
musicProcess.addEventListener('mouseup',mSlideProcessUp);
musicVolume.addEventListener('mousedown',mSlideVolumeDown);
musicVolume.addEventListener('mousemove',mSlideVolumeMove);
musicVolume.addEventListener('mouseup',mSlideVolumeUp);
//*******************Music Box end******************//
//********************************************************//
//Weather Box
//*******************************************************//
var wget = new XMLHttpRequest();
var url="";
url='./weather.php';
url="http://m.weather.com.cn/data/101110200.html";
var weatherInfo=new Array();
wget.open('GET',url);
wget.onreadystatechange=function(){
if(wget.readyState=='4' &&wget.status==200)
{
weatherInfo= wget.responseText;
weatherInfo=eval("["+weatherInfo+"]");
weatherInfo=weatherInfo[0]['weatherinfo'];
document.getElementById('weather-city').innerHTML=weatherInfo['city'];
document.getElementById('weather-temperature').innerHTML=weatherInfo['temp1'];
document.getElementById('weather-stat').innerHTML=weatherInfo['weather1'];
}
}
wget.send("User-Agent:Mozilla/4.04[en](Win95;I;Nav)");
//*******************Weather Box end*************************************//
}
function mProcess(){
if(1)
{
var ctime = music.currentTime;
var time = Math.floor(ctime/60)+":"+(Math.floor(ctime-60*Math.floor(ctime/60))<10 ? "0"+Math.floor(ctime-60*Math.floor(ctime/60)) : Math.floor(ctime-60*Math.floor(ctime/60)));
var time2 =music.duration-music.currentTime;
var etime=Math.floor(time2 /60)+":"+(Math.floor(time2-60*Math.floor(time2/60))<10 ? "0"+Math.floor(time2-60*Math.floor(time2/60)) : Math.floor(time2-60*Math.floor(time2/60)));
var ra = music.currentTime/music.duration;

var mpw=musicProcess.style.width;
mpw = mpw.substring(0,mpw.indexOf('px'));
musicSlide.style.marginLeft = mpw *ra+"px";

musicCtime.innerHTML=time;
musicEtime.innerHTML=etime;
if(music.ended==true)
{
mRandPlay();
}
}
}
//**************************************************************//
//Process
//**************************************************************//
function mSlideProcessDown(e){
mouseDown=true;
mouseX = e.pageX;
}
function mSlideProcessMove(e){
if(mouseDown==true)
{
var mLeft= (e.pageX-mouseX);
var t2 = music.currentTime+music.duration*mLeft/musicProcess.style.width.substring(0,musicProcess.style.width.indexOf('px'));
t2=t2>0 ? t2:0;
mLeft=musicProcess.style.width.substring(0,musicProcess.style.width.indexOf('px'))*t2/music.duration;
musicSlide.style.marginLeft= (mLeft>0&&mLeft<300 ? mLeft:0)+"px";

}
}
function mSlideProcessUp(e){
if(mouseDown==true)
{
mouseDown=false;

var mLeft= (e.pageX-mouseX);
var t2 = music.currentTime+music.duration*mLeft/musicProcess.style.width.substring(0,musicProcess.style.width.indexOf('px'));
mLeft=musicProcess.style.width.substring(0,musicProcess.style.width.indexOf('px'))*t2/music.duration;
t2=t2>0 ? t2:0;
musicSlide.style.marginLeft= (mLeft>0&&mLeft<300 ? mLeft:0)+"px";
mouseDown=false;
mouseX=0;

music.currentTime=t2;


}
mouseDown=false;
}
//**********************Process end****************************************//
//**************************************************************//
//Volume//
//**************************************************************//
function mVolume(){
music.volume=0.5;
musicVolumeSlide.style.marginTop = 70 *(1-music.volume)+"px";
}
var vT=0;
var aT=0;
function mSlideVolumeDown(e){
mouseDown=true;
mouseY = e.pageY;
if(musicVolume.style.height=='')
musicVolume.style.height="100px";
vT = musicVolumeSlide.style.marginTop.substring(0,musicVolumeSlide.style.marginTop.indexOf('px'));
aT= musicVolumeSlide.style.marginTop.substring(0,musicVolumeSlide.style.marginTop.indexOf('px'))/musicVolume.style.height.substring(0,musicVolume.style.height.indexOf('px'));

}
function mSlideVolumeMove(e){
if(mouseDown==true)
{
var mTop= (e.pageY-mouseY);
//document.getElementById('show-statu').innerHTML=aT*musicVolume.style.height.substring(0,musicVolume.style.height.indexOf('px'))+mTop;
mTop=aT*musicVolume.style.height.substring(0,musicVolume.style.height.indexOf('px'))+mTop;
musicVolumeSlide.style.marginTop= (mTop>0&&mTop<100 ? mTop:0)+"px";

}
}
function mSlideVolumeUp(e){
if(mouseDown==true)
{
mouseDown=false;
var mTop= (e.pageY-mouseY);
mTop=aT*musicVolume.style.height.substring(0,musicVolume.style.height.indexOf('px'))+mTop;
musicVolumeSlide.style.marginTop= (mTop>0&&mTop<100 ? mTop:0)+"px";
mouseDown=false;
mouseY=0;
music.volume=1-mTop/100;
}
mouseDown=false;
}
//**********************Volume end****************************************//
/*
播放和暂停按钮
*/
function mPlay(){
var time = Math.floor(music.duration/60)+"分"+Math.floor(music.duration-60*Math.floor(music.duration/60))+"秒";
switch(music.paused){
case true:
{
music.play();
musicPlay.style.background="url(./images/button.png) 0 -159px no-repeat";
break;
}
case false:
{
music.pause();
musicPlay.style.background="url(./images/button.png) 0 -12px no-repeat";
break;
}
}
}
/*
载入歌曲
*/
var songNum=1;
function loadSongs(){
playList={0:11,
1:{'title':"我们没有在一起",'author':'刘若英','src':"./storage/womenmeiyouzaiyiqi.mp3"},
2:{'title':"Apologize",'author':'Onerepublic','src':"./storage/Apologize.mp3"},
3:{'title':"Breathless",'author':'Shayne Ward','src':"./storage/Breathless.mp3"},
4:{'title':"Call Me Maybe",'author':'Carly Rae Jepsen','src':"./storage/Carly Rae Jepsen - Call Me Maybe.mp3"},
5:{'title':"valder fields",'author':'tamas wells','src':"./storage/tamas-wells-valder-fields.mp3"},
6:{'title':"不再联系",'author':'夏天Alex','src':"./storage/buzailianxi.mp3"},
7:{'title':"What Are Words",'author':'chris medina','src':"./storage/What Are Words.mp3"},
8:{'title':"you can trust in me",'author':'tang nguoi toi yeu','src':"./storage/tang nguoi toi yeu - you can trust in me.mp3"},
9:{'title':"Stay Here Forever",'author':'Jewel','src':"./storage/Stay Here Forever.mp3"},
10:{'title':"泪的物语",'author':'Oceans Of Love','src':"./storage/tears.mp3"},
11:{'title':"亲爱的路人",'author':'刘若英','src':"./storage/qinaideluren.mp3"},
};
//Songs cache and change//
var listCount = playList[0];
var num =Math.ceil(Math.random()*10)%(listCount+1);
songNum=num;
if(songNum>listCount)
songNum=1;
num=songNum;
songs[0]=playList[num>0? num :num+1];
num=((songNum+1) > listCount ? 1 : (songNum+1));
songs[1]=playList[num>0? num :num+1];
music.src=songs[0]['src'];
nextSong = new Audio();
nextSong.src=songs[1]['src'];
nextSong.load();
//**************************//
document.getElementById('song-title').innerHTML=songs[0]['title'];
document.getElementById('song-author').innerHTML=songs[0]['author'];
setTimeout(canPlay,2000);
setTimeout(canRand,30000);
}
/*
随机播放列表的歌曲
*/
function mRandPlay()
{
//Backgorund cache and change//
backgroundNumber =Math.ceil(Math.random()*10);
bdy.style.background="url("+backgroundImages[1].src+") top";
backgroundImages[1].src= "./rain/"+(backgroundNumber >= 10 ? 1:backgroundNumber+1)+".jpg";
//***************//
var listCount = playList[0];
//Songs cache and change//
music.pause();
music=nextSong;
document.getElementById('song-title').innerHTML=songs[1]['title'];
document.getElementById('song-author').innerHTML=songs[1]['author'];
var num =Math.ceil(Math.random()*10)%(listCount+1);
songNum+=1;
if(songNum>listCount)
songNum=1;
num=songNum;
songs[1]=playList[num>0? num :num+1];
nextSong = new Audio();
nextSong.src=songs[1]['src'];
nextSong.load();
//***************//
//musicPlay.style.display='block';
musicNext.style.display='none';
setTimeout(canRand,30000);
mPlay();
}
function canPlay(){
musicPlay.setAttribute('onClick','javascript:mPlay()');
musicPlay.style.display='block';
}
function canRand(){
musicNext.setAttribute('onClick','javascript:mRandPlay()');
musicNext.style.display='block';
}




喜欢一个人


不难


被同一个人喜欢
好难





您的浏览器暂不支持HTML5 请选择Google chrome或其他支持HTML5的浏览器




0:00




0:00


















window.onload=init();
mVolume();
loadSongs();



文件目录结构:
images:存放botton.png
rain:存放背景
storage:存放mp3格式音乐

文档

JSHTML5音乐天气播放器(Ajax获取天气信息)_javascript技巧

JSHTML5音乐天气播放器(Ajax获取天气信息)_javascript技巧:晚上要考软件工程,实在不想复习。写个播放器吧,这个只是个用来学习的小Demo,众多不完善之处,下面贴出源代码,如果要转载,请加上版权声明PS:因为Ajax涉及到跨域获取天气信息,有两个版本,一个是直接跨域,IE10支持,其他的浏览器要改配置。另一个是服务
推荐度:
标签: 天气 音乐 播放器
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top