Check out the live demo
I'm working on animating a search form. Currently, it slides from left to right, but I want it to slide from right to left instead. Additionally, I would like to add a smooth easing effect to the animation.
Here is the HTML code I am using:
<form role="form" class="search-form-2">
<i class="fa fa-search"></i>
<div class="search-toggle" style="display:none">
<input type="text" class="search-form" autocomplete="off" placeholder="Search" size="25">
</div>
</form>
And here is the JS code implementation:
$("i.fa.fa-search").click(function () {
$(".search-toggle").animate({width: 'toggle'});;
});
If anyone has any suggestions or tips on how to achieve this effect, it would be greatly appreciated.