改成这样就ok了。
@-webkit-keyframes rotation {
0% {
transform: translateX(0) translateY(0);
}
100%{
transform: translateX(-2000px) translateY(400px);
}
}
@-moz-keyframes rotation {
与上同
}
@-webkit-keyframes rotation {
0% {
transform: translateX(0) translateY(0);
}
100%{
transform: translateX(-2000px) translateY(400px);
}
}
@-moz-keyframes rotation {
与上同
}
2018-04-09
已采纳回答 / 行梦者
利用北京图片的background-position属性,位置想要选中小男孩所在这张图片的坐标,图片右上角为0px 0px,x轴 向右为正,Y轴向下为负,比如background-position: 0 -291px就是选中右下角的那个男孩
2018-04-02
已采纳回答 / 学习啊啊啊啊啊啊啊
请看css精灵,改变background-position的坐标,style.css代码中的person-slow和person-floler-slow的区别
2018-04-01
最赞回答 / 阳光下鸟语花香
本课程引用的“55ac9a860001a6c500000000.js”实则是 jquery V2.1.4 ,大家可以自行安装引用,如不会安装,请浏览官网http://jquery.com/
2018-03-26
放不出音乐的基本是路径问题吧...
可以装个wamp,然后把工程放到www文件夹下,然后引用音乐文件的时候不一定要引用网址路径的音乐,也可以使用本地音乐,注意路径指向
然后打开index.html文件的时候注意不要直接双击,要运行http://127.0.0.1:8020/index.html
不然会出现GET file:///D:/%E4%B8%83%E5%A4%95%E8%A8%80%E6%83%85_2/music/happy.wav net::ERR_FILE_NOT_FOUND之类的错误。。。
可以装个wamp,然后把工程放到www文件夹下,然后引用音乐文件的时候不一定要引用网址路径的音乐,也可以使用本地音乐,注意路径指向
然后打开index.html文件的时候注意不要直接双击,要运行http://127.0.0.1:8020/index.html
不然会出现GET file:///D:/%E4%B8%83%E5%A4%95%E8%A8%80%E6%83%85_2/music/happy.wav net::ERR_FILE_NOT_FOUND之类的错误。。。
2018-03-09
最新回答 / 慕的地2446357
看下调用的地方,就可以知道一个是distX,另一个是distY,所以这部分代码写错了var distX = calculateDist('x', 0.5); var distY = calculateDist('y', 0.5); walkRun(10000, distX, distY);-----function walkRun(time, distX, distY) { time = time || 3000; // 脚动作 slowWalk(); var d1 =...
2018-03-05