[TIL] DAY8 공개 키 공식 / JS & CSS

박동우·2023년 3월 28일

블록체인 스쿨 3기

목록 보기
10/72

[TIL] 2023-03-27 DAY8

공개 키 구하는법(비트코인 지갑 생성 과정)

JS & SCSS

https://github.com/dowoo303/startScreen2

  • 애니메이션 추가하는법
    원하는 곳에
    animation: spin;
    붙여넣기
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
  • CHAT GPT
  • 상황에 따른 클릭 조절하기
function onClickToggle(value) {
  const nft = document.querySelector(".nft");
  const nftView = document.querySelector(".nftView");

  if (value) {
    nft.style.display = "inline-block";
    nftView.style.display = "none";
  } else {
    nft.style.display = "none";
    nftView.style.display = "inline-block";
  }
}
profile
HELLO!

0개의 댓글