我的动画有切换效果,难受,每次都看到动画从第一行切换到第二行再切回去的过程
------------------------------------------
终于找到原因了!原来是因为steps()函数少了一个s变成了step(),函数不生效,就默认使用ease方式(有过渡效果)过渡了!
------------------------------------------
终于找到原因了!原来是因为steps()函数少了一个s变成了step(),函数不生效,就默认使用ease方式(有过渡效果)过渡了!
2021-05-26
说真的,我吞吞慢慢的做了很久才做到这里来,不知道真的是我太笨还是其他人聪明还是说很吃苦,我很多代码以及用法也是第一次接触,不知道我还要一个一个百度,哎,说实话 出个视频也好啊,
2019-11-13
element.css({
'transition-timing-function' : 'linear',
'transition-duration' : speed + 'ms',
'transform' : 'translate3d(-' + x + 'px,0px,0px)'
});
return this;
};
'transition-timing-function' : 'linear',
'transition-duration' : speed + 'ms',
'transform' : 'translate3d(-' + x + 'px,0px,0px)'
});
return this;
};
2019-08-27