function sample(){
n=1;
yy=14;
mm=7;
var timer;
var delay = 1000;
var loop = function () {
n=n+1;
if(n>26)mm=mm+1;
if(n>26)n=1;
if(mm>12)yy=yy+1;
if(mm>12)mm=1;
h=0;
if(yy==1015)h=h+1;
if(mm==10)h=h+1;
if(h==2)n=1;
if(h==2)yy=2013;
if(h==2)mm=1;
paint();
clearTimeout(timer);
timer = setTimeout(loop, delay);
}
loop();
}
function paint(){
str=""+yy+""+mm;
if(mm<10)str=yy+"0"+mm;
urlx="<img src=\"http://propaganda-party.com/img/Gallery/"+str+"/pc_b/"+n+".jpg\" width=500 height=500>";
$("#memo").html(urlx);
}
最終更新:2015年11月02日 20:12