Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ms-visible 可以支持简单动画吗? #36

Closed
ztzcom opened this issue Jul 30, 2013 · 1 comment
Closed

ms-visible 可以支持简单动画吗? #36

ztzcom opened this issue Jul 30, 2013 · 1 comment

Comments

@ztzcom
Copy link

ztzcom commented Jul 30, 2013

ms-visible的时候能不能加些动画?
比如:ms-visible-500="show"
vm.show = true;
效果类似 $(dom).show(500);
vm.show = false;
效果类似 $(dom).hide(500);

@RubyLouvre
Copy link
Owner

自己定义一下

avalon.bindingHandlers.show = function(){
     var value = data.value;
    value = isFinite(value) ? ~~ value : value
    var element = data.element;
    $(element).show(value);  //$    为jquery
}

ms-show="500"

ms-show="slow"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants