给hover加上过渡效果

1、在需要hover的标签上加上

transition: all .2s ease-in-out;

2、让高亮更有层次

.nav-items a{
  opacity: .69;

  color:#fff;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.nav-items a.on{
  color: #fff;
  opacity: 1;
}

posted @ 2018-05-24 15:29  小冰精灵  阅读(2234)  评论(0编辑  收藏  举报