最新回答 / ZJLIAN
可能是环境没搭好吧,简单点可以npm装个create-react-app,来一键生成react环境,react中文文档就有教程,这样的话jquery和jplayer就不能直接用了,可以换些其他的音频库来用
2017-09-21
加个唱片旋转,pause同时暂停
#player-cover
{
position:relative;
animation-name:myfirst;
animation-duration:5s;
animation-timing-function:linear;
animation-delay:2s;
animation-iteration-count:infinite;
animation-play-state:running;
}
0% {left:0px; top:0px;}
25% {-webkit-transform: rotate(90deg);}
。。。
#player-cover
{
position:relative;
animation-name:myfirst;
animation-duration:5s;
animation-timing-function:linear;
animation-delay:2s;
animation-iteration-count:infinite;
animation-play-state:running;
}
0% {left:0px; top:0px;}
25% {-webkit-transform: rotate(90deg);}
。。。
2017-09-20
最赞回答 / darkwing_
output 路径不是绝对路径,改成path: path.resolve(__dirname, './dist'),同时在开头 var path = require('path');
2017-09-19