以下エラーの原因がどうしてもわかりません。
どなたかご教示を宜しくお願い致します。
HTML
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4 <meta charset="utf-8"> 5 <title>Java Script Practice</title> 6 <style> 7 body{ 8 display: flex; 9 flex-wrap: wrap; 10 } 11 .box{ 12 width:100px; 13 height:100px; 14 background-color:blue; 15 cursor:pointer; 16 transition:0.8s; 17 margin:0 8px 8px 0; 18 text-align:center; 19 line-height: 100px; 20 } 21 .win{ 22 background:pink; 23 border-radius:50%; 24 transform:rotate(360deg); 25 } 26 .lose{ 27 transform:scale(0,9); 28 29 } 30 </style> 31 32</head> 33<body> 34 35 <script> 36 'use strict'; 37 38 console.log('Hello World'); 39 40 const num=5; 41 const winner=Math.floor(Math.random()*num); 42 43 for(let i=0; i<num; i++){ 44 const div=document.createElement('div'); 45 div.classList.add('box'); 46 47 div.addEventListener('click',()=>{ 48 if(i===winer){ 49 div.textContent='Win!'; 50 div.classList.add('win'); 51 52 }else{ 53 div.textContent='Lose!'; 54 div.classList.add('lose'); 55 56 } 57 58 }); 59 60 document.body.appendChild(div); 61 } 62 63 64 </script> 65 <script src="js/main.js"></script> 66</body> 67 68</html>
Javascript
1'use strict'; 2 3const score=85; 4score>=80? console.log('Great!'):console.log('OK,,,,');
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。