开发者

zepto.js page animations

开发者 https://www.devze.com 2023-03-19 08:23 出处:网络
Does anyone know how to change the type of animation the page/sections uses? I read the docs but couldn\'t un开发者_Go百科derstand a single thing. I like the framework and I really want to give it a t

Does anyone know how to change the type of animation the page/sections uses? I read the docs but couldn't un开发者_Go百科derstand a single thing. I like the framework and I really want to give it a try but there is absolutely NO tutorials or documentation for that matter.


You can use those Zepto animations, which are native webkit transitions:

$('.pages').anim({ translateX: window.innerWidth + 'px'}, 0.5, 'ease-out');

or

$('.pages').anim({ translate3d: window.innerWidth + 'px, 0, 0'}, 0.5, 'ease-out');

List of animation available:

var supportedTransforms = [
        'scale', 'scaleX', 'scaleY',
        'translate', 'translateX', 'translateY', 'translate3d',
        'skew',      'skewX',      'skewY',
        'rotate',    'rotateX',    'rotateY',    'rotateZ',    'rotate3d',
        'matrix'
      ];
0

精彩评论

暂无评论...
验证码 换一张
取 消