xxxxxxxxxx
19
// Orientation (c) 2015, 2021 kouichi.matsuda@gmail.com
function setup() {
createCanvas(windowWidth, windowHeight);
textSize(80); // 大きなフォントを用いる
}
function draw() {
background(220);
if (deviceOrientation === "portrait") {
// 縦横チェック
text("縦です", 10, 100);
} else if (deviceOrientation === "landscape") {
text("横です", 10, 100);
} else {
text("未定義", 10, 100);
}
}