| Page 1 of 1 | [ 4 posts ] |
|
In YUI 2, we can add animation in autocompleter itself using animation utility
Animation If you include the YUI Animation utility on your web page, you can enable animation on the transitions of the AutoComplete container element using the following code: // Container will expand and collapse vertically myAutoComp.animVert = true; // Container will expand and collapse horizontally myAutoComp.animHoriz = true; // Container animation will take 2 seconds to complete myAutoComp.animSpeed = 2; Can anyone let me know same thing how can we achieve using YUI 3 autocomplete? Thanks in advance |
|
Take a look at the WidgetAnim plugin, which allows you to define show/hide animations for any widget: http://yuilibrary.com/yui/docs/api/clas ... tAnim.html
Documentation is a bit sparse. Maybe someone with experience using WidgetAnim could chime in with an example? |
|
Thanks for your quick reply but i am not able to do animation on autocomplete list its working on my input textbox.
Could you suggest me more for the same. Thanks & Regards, Mona |
|
created animation for autocomplete and added animation into visible change event,
Y.one('#q').ac.on('visibleChange', function (e) { var b = Y.one(".yui3-aclist-content"); b.setStyle('height', MaxHeight); var ListClientHeight = Y.one('.yui3-aclist-list')._node.clientHeight; var ContentClientHeight = b._node.clientHeight; if (ListClientHeight < ContentClientHeight) { theight = ListClientHeight; } else { theight = ContentClientHeight; } var anim = new Y.Anim({ node: '.yui3-aclist-content', from: { height: lastheight }, to: { height: theight + 3 }, //easing: Y.Easing.backOut, duration: 0.5 }); lastheight = theight; anim.run(); }); |
| Page 1 of 1 | [ 4 posts ] |
| You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum |
© 2006-2013 Yahoo! Inc. All rights reserved.
All code on this site is licensed under the BSD License unless stated otherwise.
About This Site · Security Contact Info
Powered by phpBB® Forum Software © phpBB Group