我试图将转换转换值分配给元素。我使用的是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.
我在做什么错了?