如何指定转换转换为元素?

时间:2019-01-08 10:54:11

标签: javascript transform

我试图将转换转换值分配给元素。我使用的是Webpack,它在functions.js:104

处显示错误
  

未捕获的TypeError:无法设置未定义的属性'transform'

我的代码:

const move = -1 * (moveInPercent);
console.log(move); // this output the required value
innerWrapper.style.transform = `translateY( ${move}% )`;

我想达到的目标是

transform: translate(10px); // dynamically added value when scrolling.

我在做什么错了?

0 个答案:

没有答案