본문 바로가기

분류 전체보기76

현재 위치 위도 경도 표시하기 (Javascript) (function location(){navigator.geolocation.getCurrentPosition(function(position) {console.log("위도 : " + position.coords.latitude);console.log("경도 : " + position.coords.longitude);}, ); })(); geolocation.getCurrentPostion() 현재 위치를 가져온다 geolocation APIhttps://developer.mozilla.org/ko/docs/Web/API/Geolocation_API 2020. 9. 6.
시계 만들기(HTML, CSS, JAVASCRIPT) body{ display: flex; justify-content: center; align-items: center; margin : 300px auto; background-color: rgba(0, 0, 0, 0.863);}.clk{ width: 280px; height: 280px; display: flex; justify-content: center; align-items: center; background-size: cover; background-color: rgba(255, 255, 255, 0.554); border: 4px solid #0a181f; border-radius: 50%; box-shadow: 0 -15px 15px rgb(255, 255, 255), inset 0 -15p.. 2020. 9. 6.
로또 번호 생성하기2 (Javascript) li{ margin: 10px; } 로또 번호 추출 const lotto = document.querySelector('.js-lotto') const btn = document.querySelector('button') const lotto_number = [] function handleLotto(){ let arr = []; for(let i = 0; i 2020. 8. 10.
진수 변환하기 toString (JavaScript) const a = 100;const bin = a.toString(2);const oct = a.toString(8);const hex = a.toString(16); console.log(`10진수 ${a} -> 2진수 ${bin}`);console.log(`10진수 ${a} -> 8진수 ${oct}`);console.log(`10진수 ${a} -> 16진수 ${hex}`);console.log(typeof(bin)); 1. toString(값) 메소드는 지정된 객체 문자열을 출력한다.2. 값이 지정되지 않으면 임의로 10진수로 지정된다.3. 반환 되는 값은 Number가 아니며 String으로 반환된다. 2020. 8. 7.