ydcss / vue-ydui

A mobile components Library with Vue2.js. 一只基于Vue2.x的移动端组件库。
http://vue.ydui.org
MIT License
2.75k stars 560 forks source link

rollnotice 支持rem 修改方法 #796

Open pbwei opened 4 years ago

pbwei commented 4 years ago

问题描述

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

产生环境

提示错误信息

  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>