HTML 및 CSS를 사용하여 아이콘으로 놀라운 버튼을 만드는 방법

오늘 영상에서는 HTML과 CSS를 사용하여 아이콘이 있는 버튼을 만드는 방법을 보여드리겠습니다. 이 작업은 쉽게 수행할 수 있으며 자신의 웹사이트나 프로젝트/포트폴리오에 추가할 수 있습니다.
HTML로 요소의 구조를 만든 다음 처음부터 CSS로 모든 스타일과 효과를 단계별로 작성하는 전체 프런트 엔드 코딩 튜토리얼을 보여드리겠습니다!

마크업

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Create Buttons with Icons</title>
  <link rel="stylesheet" href="style.css">
</head>

<body>

  <button class="button">
    <span class="button__text">Like it</span>
    <span class="button__icon">
      <ion-icon name="heart-outline"></ion-icon>
    </span>
  </button>


  <script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
</body>

</html>


스타일링

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

body {
    display: grid;
    height: 100vh;
    place-items: center;
    overflow: hidden;
    background: #20374e;
}
.button {
    display: flex;
    height: 50px;
    padding: 0;
    background: #2980b9;
    border: none;
    outline: none;
    border-radius: 5px;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: all 160ms ease-in;
}
button:hover {
    background: #008168;
}

button:active {
    background: #006e58;
    transform: scale(.95);
}
.button__text,
.button__icon {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    color: rgb(226, 226, 226);
}
.button__icon {
    font-size: 1.5em;
    background: rgb(0, 0, 0, 0.08);
}



🛴 더 많은 정보를 원하시면 저를 팔로우하세요:
유튜브: https://bit.ly/3oBQbc0
페이스북: https://bit.ly/3cp2S5W
인스타그램[신규]: https://bit.ly/3Ihh2EB

좋은 웹페이지 즐겨찾기