3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

どうもAtsu1209です。
今回は数学の先生に「お前大丈夫か?」って言われたサイトの話をします。

何やねんそれ

簡潔に言うと「どんな数字でも666にこじつける」というものです。
アイデア自体は私の友達が作ったのですが、JSで作ったろかなと思ったので
作りました。(もうすぐ受験。何やってんねん。)

コード

簡潔に言うとクソコードです。

function cal(){
    const num = document.getElementById("num").value;
    const res = document.getElementById("result");
                
    if (num == 1){
        res.textContent = "1を6倍すると6になるんですね。それを3個並べると 666悪魔の数字";
    }
    else if (num == 2){
        res.textContent = "2の4乗って16なんですね。さらにそこに2を足すと18になるんですね。 18は 6x3 6が3個。 666悪魔の数字";
    }
   
    else if (num == "777"){
        res.textContent = "パチンコ打ちたいよねって話。 ついでに 666悪魔の数字"
    }
    
    ...この後にめっちゃ続く
    
    else{
        res.textContent = "とりあえず 666悪魔の数字";
    }
}

if文を何個も並べてやってます。

HTML

誰とは言わないけど例の人を出したいのよね
例の666悪魔の数字って言ってる方
って事でjQueryfadeIn使います。

    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
      let bp = 0;
$('#btn').click(function() {
    bp += 1;
    
    if (bp === 1) {
        $("#img").fadeIn(1500);
        $("#result").fadeIn(1500);
        
        setTimeout(() => {
            $("#img").fadeOut(1500);
            $("#result").fadeOut(1500);
            bp = 0; 
        }, 5000);
    }
});

    </script>

bpでボタンのカウンター
こうするしか... なかったんだ...

最後に

もしかしたらGithubPagesで公開する。

お わ り

3
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?