当前位置: 首页 > Web前端 > HTML

简单的动画——让你的背景图片动起来!!!

时间:2023-04-02 19:00:49 HTML

效果:body{margin:0px;高度:100%;宽度:100%;背景图像:url(“bg.png”);背景位置-x:0px;背景位置-y:0px;背景重复:重复;}轮询改变身体背景图片动画,让世界地图作为背景向前平移。var身体=$('身体');变量x=0;函数轮询(){x+=5;body.animate({'background-position-x':x+'%',},400,'linear');setTimeout(polling,300)}polling();效果2:![图片说明][2]鼠标移动后,背景图片根据坐标差计算移动距离。varlast=null;varbody=$('body');$(document).mousemove(function(event){if(last==null){last={x:event.pageX,y:event.pageY};return;}else{offset={x:event.pageX-last.x,y:event.pageY-last.y};vartop=parseInt(body.css('background-position-y'))-offset.y;varmax=screen.availHeight-1024;if(max>=0)max=0;if(top>0)top=0;if(top