carousel.js
getNext()方法
newArr.forEach((item, i) => {
if (i == 0) {
// console.log("item",item.style)
item.style.tranform = `translateX(${-width * (length - 1)}px)`;
//移动到第一项的元素透明度为0
item.style.opacity = 0;
// item.style
console.log("item",item.style)
}else{
//其余项透明度为1
item.style.opacity = 1;
}
item.style.transform = `translateX(${width * (i - 1)}px)`;
})