おみくじ-button

おみくじ-button




[おみくじ-button.icon] と書くと、icon-buttonになります
おみくじ-button
押すと、「おみくじ-button」ページの button.js が実行されます

もとのコードをなるべく保った状態で修正
button.js
Copied!
function omikuji () {
const rand = Math.floor(Math.random() * 100);
let msg = "大吉";
if (rand > 9) msg = "中吉";
if (rand > 29) msg = "吉";
if (rand > 69) msg = "凶";
if (rand > 89) msg = "大凶";
alert(msg);
}

omikuji();
Powered by Helpfeel