반응형
HTML
<div class="nav-tabs-wrapper">
<ul class="nav nav-tabs" id="myTabs" role="tablist">
<li role="presentation" class="active"><a href="#home" id="home-tab" role="tab" data-toggle="tab" aria-controls="home" aria-expanded="true">Home</a></li>
<li role="presentation"><a href="#profile" role="tab" id="profile-tab" data-toggle="tab" aria-controls="profile">Profile</a></li>
<li role="presentation"><a href="#dropdown1" role="tab" id="profile-tab" data-toggle="tab" aria-controls="profile">Something else</a></li>
<li class="nav-underline" role="presentation"></li>
</ul>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade in active" role="tabpanel" id="home" aria-labelledby="home-tab">
<p>Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</p>
</div>
<div class="tab-pane fade" role="tabpanel" id="profile" aria-labelledby="profile-tab">
<p>Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park.</p>
</div>
<div class="tab-pane fade" role="tabpanel" id="dropdown1" aria-labelledby="dropdown1-tab">
<p>Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free, carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray yr.</p>
</div>
<div class="tab-pane fade" role="tabpanel" id="dropdown2" aria-labelledby="dropdown2-tab">
<p>Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater. Lomo wolf viral, mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan.</p>
</div>
</div>
</div>
SASS
.nav-tabs
position: relative
> li
> a
&:hover,
&:focus
outline: none
background-color: transparent
&, &.active
> a,
> a:hover,
> a:focus,
> a:active
border: none
background: none
.nav-underline
position: absolute
left: 0
bottom: 0
width: 0px
height: 2px
background: $color-blue-600
will-change: left, width
translation: left .2s, width .2s
JS(Coffeescript)
$->
$(document).find('.nav-tabs:has(.nav-underline)').each () ->
$container = $(this)
$active = $container.find('li.active')
$underline = $container.find('.nav-underline')
left = $active.position().left
width = $active.outerWidth()
$underline.css({left, width})
$(document).on 'mouseenter focus', '.nav-tabs:has(.nav-underline) > li > a', () ->
$this = $(this)
$parent = $this.parent()
$container = $parent.closest('.nav-tabs')
$underline = $container.find('.nav-underline')
left = $parent.position().left
width = $parent.outerWidth()
$underline.css({left, width})
$(document).on 'mouseleave blur', '.nav-tabs:has(.nav-underline) > li > a', () ->
$this = $(this)
$container = $this.closest('.nav-tabs')
$active = $container.find('li.active').first()
$underline = $container.find('.nav-underline')
left = $active.position().left
width = $active.outerWidth()
$underline.css({left, width})
반응형
'개발 이야기 > Generals' 카테고리의 다른 글
MySQL 똑같이 생긴 테이블 A, B에 대해 테이블 A 에서 테이블 B 로 ROW 옮기기 (0) | 2021.03.10 |
---|---|
CSS/Sass 긴 문자열 끝을 ...로 만들기 (0) | 2021.02.18 |
AngularJS ng-src 가 이미지 없는 경우 이미지가 동적으로 바뀌지 않는 문제 해결 (0) | 2021.02.17 |
CSS/Sass 썸네일 이미지를 상위 DIV에 딱 맞는 정사각형으로 만들기 (0) | 2021.02.17 |
[HTML] 드래그 방지, 우클릭 방지, 블록 선택 방지 기능 넣기 (0) | 2021.01.05 |
댓글