JS寻找宝藏游戏

在地图上随机点一个地方,然后图片下方会出现如下文字:

distance是宝藏与点击的地方的距离

 if(distance < 10){
                    return "Boiling hot!";
                } else if(distance < 20){
                    return "Really hot";
                } else if(distance < 40){
                    return "Hot";
                } else if(distance < 80){
                    return "Warm";
                } else if(distance < 160){
                    return "Cold";
                } else if(distance < 320){
                    return "Really cold";
                } else {
                    return "Freezing!";
                }

JS寻找宝藏游戏_第1张图片


具体实现如下:



    
        Find the buried treasure!
    
    
    

Find the buried treasure!

//调用jquery库


你可能感兴趣的:(JavaScript)