LoginSignup
8
9

More than 5 years have passed since last update.

ぼくがかんがえたさいきょうのスクロール追従メニュー

Last updated at Posted at 2015-07-01
jade
.fixed
  p.pagetop
    a(href='#top')
      img(src='pagetop.gif', alt='トップへ戻る')
coffee
$ ->
  wantToShow = 85

  $(window).scroll(()->
    percentage = $(this).scrollTop() / ($(document).height() - $(this).height()) * 100

    if percentage > wantToShow
      $('.fixed').addClass('is-active')
    else
      $('.fixed').removeClass('is-active')
  )
scss
$mouseover:.15s;

.fixed {
    @include transition(opacity, $mouseover, linear);
    @include opacity(0);
    position: fixed;
    right: 18px;
    bottom: 200px;
    z-index: -1;

    &.is-active {
        @include opacity(1);
        z-index: 1;
    }
}
8
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
9