おみくじ-button
https://gyazo.com/8e292ea536ce2dcfe918b0aeef95da7d/thumb/200#.png
[おみくじ-button.icon]と書くと、icon-buttonになります
おみくじ-button.icon
押すと、「おみくじ-button」ページの button.js が実行されます
もとのコードをなるべく保った状態で修正
code:button.js
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();