최신 웹 개발 튜토리얼
 

방법 - 아이콘 바


CSS와 아이콘 막대를 작성하는 방법에 대해 알아 봅니다.


수직선:

수평 :


어떻게 아이콘 바 만들기

1 단계) HTML을 추가합니다 :

<!-- Add icon library -->
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">

<div class="icon-bar">
  <a class="active" href="#"><i class="fa fa-home"></i></a>
  <a href="#"><i class="fa fa-search"></i></a>
  <a href="#"><i class="fa fa-envelope"></i></a>
  <a href="#"><i class="fa fa-globe"></i></a>
  <a href="#"><i class="fa fa-trash"></i></a>
</div>

2 단계) CSS를 추가 :

수직 예

.icon-bar {
    height: 100%;
    width: 90px;
    text-align: center;
    background-color: #555;
}

.icon-bar a {
    padding: 16px;
    display: block;
    transition: all 0.3s ease;
    color: white;
    font-size: 36px;
}

.icon-bar a:hover {
    background-color: #000;
}

.active {
    background-color: #4CAF50;
}
»그것을 자신을 시도

수평 예

.icon-bar {
    width: 100%;
    text-align: center;
    background-color: #555;
    overflow: auto;
}

.icon-bar a {
    width: 20%;
    padding: 12px 0;
    float: left;
    transition: all 0.3s ease;
    color: white;
    font-size: 36px;
}

.icon-bar a:hover {
    background-color: #000;
}

.active {
    background-color: #4CAF50;
}
»그것을 자신을 시도

팁 : 우리의 이동 CSS Navbar의 튜토리얼 탐색 모음에 대한 자세한 내용을 보려면.

팁 : 우리의 이동 아이콘 튜토리얼 아이콘에 대한 자세한 내용은.