以下のコードで、ローデイング画面を実装しているのですが、
int x = 0;
int y = 180;
int d = 10;
int dx = 15;
void setup() {
size(900, 900);
frameRate(15);
strokeWeight(20);
}
void draw() {
background(0);
noFill();
stroke(255);
ellipse(width/2,height/2,500,500);
fill(255);
arc(width/2,height/2,500,500,radians(x),radians(y));
x += dx;
y += d;
if(x == (y-10)){
d = 15;
dx = 10;
fill(random(255),random(255),random(255));
}
if(y >= x+350){
dx = 15;
d = 10;
fill(random(255),random(255),random(255));
}
stroke(0);
ellipse(width/2,height/2,150,150);
}
このコードのみだとエラーが出ないで、うまくいくのですが、
var date = new Date();
date.setTime( date.getTime() + ( 30 * 1000 ));
$.cookie( "hoge", "30 seconds", { expires: date });
をつけると、
$.cookie( "hoge", "30 seconds", { expires: date });
ここの部分で"unexpected token” とエラーが起きてしまいます。
時間制限をつけるには、どのように修正すればいいでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。