当前位置:   article > 正文

修改饿了么ui里面notification出现的位置和运动轨迹_如何自定义将notification位置设置为中部

如何自定义将notification位置设置为中部

点我查看原文

在用element UI做开发的过程中,我们的UI要求notification在屏幕上居中显示。我们都知道,element只提供了左上,左下,右上,右下四个位置,可没有提供居中显示。

怎么办,首先想到的就是调调css了,因为这个成本最低,要是其它的,可能还需要去看源码。

1.第一步,先找影响notification显示的css。

将durution设置为0,如下:

this.$notify({
     title: '提示',
     message: '有错误',
     type: 'warning',
     duration:0
 })
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

接下来打开chrome浏览器,选中提示框,我们发现在不同的位置它有三个类名:el-notification right left

2.利用css的优先原则,将源码里的css样式全部覆盖掉,因为我这边要求的是全局都覆盖掉,所以我就用了一劳永逸的方法,全部覆盖了。

.el-notification{
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.el-notification.right{
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.el-notification.left{
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

3.添加动画效果

这一步是我们本来以为需要,后来UI说不需要,我就去掉了,不过既然写了,发上来也无妨。利用css3的animation,给notification添加动画。下面只写一个从上到下的。

.el-notification.left{
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    animation: notify 0.5s linear 1;
}
@keyframes notify {
  from {
    top: calc(50% - 300px);
  }
  to {
    top: 50% ;
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/91098
推荐阅读