ydcss/vue-ydui

rollnotice 支持rem 修改方法

pbwei opened this issue · 0 comments

pbwei commented

问题描述

本项目 rollnotice 只能支持px, 修改 rollnotice.vue 组件

产生环境

  • **使用版本:-
  • **引入方式:CDN | NPM
  • **演示地址:-

提示错误信息

  1. ...

代码区域

添加 ‘px’ -> heightUnit
<div class="yd-rollnotice" :style="{height: height + heightUnit}">
<script>
    props: {
    heightUnit: {
      default: 'px', // 高度单位
    },
   }
setTranslate(speed, translate) {
      this.styles.transitionDuration = speed + 'ms';
      this.styles.transform = 'translate3d(0, ' + translate + this.heightUnit + ', 0)';
    },
</script>