<!doctype html><htmllang="en"><head><metacharset="UTF-8"><title></title></head><body><styletype="text/css">#demo {
width: 100px;
height: 100px;
position:absolute;
border-radius:50px;
}
</style><scripttype="text/javascript">window.onload=function(){
vardemo=document.getElementById('demo');
varsx=sy=10;
varx=y=0;
functionmove(){
if(document.documentElement.clientWidth-demo.offsetWidth-10<x||x<0){
sx=-sx;
}
if(document.documentElement.clientHeight-demo.offsetHeight-10<y||y<0){
sy=-sy;
}
x=demo.offsetLeft+sx;
y=demo.offsetTop+sy;
demo.style.left=x+'px';
demo.style.top=y+'px';
}
vartimer=setInterval(move, 100);
demo.onmouseover=function(){
clearInterval(timer);
}
demo.onmouseout=function(){
timer=setInterval(move, 100);
}
}
</script><imgsrc="https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/mantpl/img/base/loading_72b1da62.gif"id="demo"/></body></html>