eleopard
Forum Replies Created
-
Forum: Plugins
In reply to: [Animate It!] Animate my logoDear,
For animating logo, you have to wrap the logo within a div/span tag and apply the animation classes over the div/span.
<div class="<ANIMATION CLASSES>"> <LOGO> </div>you can use http://www.downloads.eleopard.in/class-generator-wordpress.html for generating the animation classes.
Forum: Plugins
In reply to: [Animate It!] In Then OutCurrently nested animations are only supported using DIV tags
Forum: Plugins
In reply to: [Animate It!] In Then OutHi,
Please check this post http://www.downloads.eleopard.in/forum/advanced-user-settings-ai/43-creating-nested-animation-in-wordpress.html
It should solve your problem.
You can do the same using the animate it blocks generated using “Animate It” button.
Forum: Plugins
In reply to: [Animate It!] Animate is happening without delay or scrollHi
Could you please provide the URL for your WordPress instance?
Forum: Plugins
In reply to: [Animate It!] Animate On Scroll doesn't work right!Dear Shuvra124,
Have you selected the option “On Scroll”?
The on scroll animation works once for each reload and start instantaneously as the object comes withing the view port. if your object is currently not in the view port then as you scroll down, the animation starts as the object comes withing the visible window area, however you can control up to what offset you do not want to start animation using scroll offset option.
Hi,
We will check the feasibility and if possible will add the same in the next version.
Forum: Plugins
In reply to: [Animate It!] Problems with widgetmarking as resolved
Forum: Plugins
In reply to: [Animate It!] Problems with widgetmarking as resolved
Forum: Plugins
In reply to: [Animate It!] Animate On Scroll doesn't work right!marking as resolved
Forum: Plugins
In reply to: [Animate It!] How to implement nested animations?Marking resolved
Forum: Plugins
In reply to: [Animate It!] Longer Delaysmarking the topic resolved
Forum: Plugins
In reply to: [Animate It!] Animate On Scroll doesn't work right!Hi,
The Animation on Scroll takes place when the components are in visible area of the window, so if you already scrolled down to the component and refresh the page, the animation take place instantly as the components are in the visible area of window.
however if you scroll up and then refresh, the animation occurs when you scroll to the components.Forum: Plugins
In reply to: [Animate It!] Longer DelaysYou can add new classes also, In that case what you need to do is to modify the delay attribute of the generated shortcode.
for example. Add following CSS class using Custom CSS field.delay50 { -webkit-animation-delay: 50s; -moz-animation-delay: 50s; -ms-animation-delay: 50s; -o-animation-delay: 50s; }Now in animation block, update the delay parameter as below:
[edsanimate animation=”shake” delay=”50″ infinite_animation=”no” animate_on=”” ]
Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type
[/edsanimate]
Now you will have the additional delays
Forum: Plugins
In reply to: [Animate It!] Longer DelaysHi,
Regarding Longer Delays.If you have prior knowledge of CSS and how to modify them.
you can overwrite the Delay classes to have custom delays.
for example:
Go to the Settings page of Animate It.
Put the below code in the Custom CSS block.delay1 { -webkit-animation-delay: 20s; -moz-animation-delay: 20s; -ms-animation-delay: 20s; -o-animation-delay: 20s; }Now while adding animation blocks, select the 0.5 sec option in the delay drop down, this now actually generates a delay of 20 seconds.
Forum: Plugins
In reply to: [Animate It!] How to implement nested animations?Hi,
Please use class generator http://www.downloads.eleopard.in/class-generator-wordpress.html to generate animation classes and then apply those classes over SPAN tags containing Text and Images.
<span class="<ANIMATION CLASSES>"> <img src="<IMG PATH>" /> </span> <span class="<ANIMATION CLASSES>"> <TEXT TO ANIMATE> </span>for different animation, generate different animation classes.
thankyou.