移动端布局 小记

Posted ankle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端布局 小记相关的知识,希望对你有一定的参考价值。

 

vue 做 左侧菜单栏,wrapper 为父级,弹出时显示并从左侧做滑入动画,transform: translateX(-250px); 渐隐渐现。子级左右布局左侧60%,右侧40%,点击滑出菜单且隐藏

.fadeIn-enter-active {
  transition: all .4s ease;
}
.fadeIn-leave-active {
  transition: all .2s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.fadeIn-enter, .fadeIn-leave-active {
  transform: translateX(-250px);
  opacity: 0;
}

 

给a标签hover效果 添加 下划线 过渡动画

a {
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #3F51B5;
  transform: scaleX(0);
  transition: .3s ease-in-out;
}
a:hover::after {
  transform: scaleX(1);
  transition: .3s ease-in-out;
}

 

以上是关于移动端布局 小记的主要内容,如果未能解决你的问题,请参考以下文章

添加两个窗格的平板电脑布局会导致在移动设备中找不到视图(小于w600dp)

解决移动端报错:Unable to preventDefault inside passive event listener due to target being treated as……(代码片段

DOM练习小记--简单的拼单词游戏

Flex布局详解

移动端适配(手机端rem布局详解)

前端小记1