<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: Remove Animation on Mobile</title>
		<atom:link href="https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/feed/" rel="self" type="application/rss+xml" />
		<link>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/feed/</link>
		<description></description>
		<pubDate>Fri, 28 Aug 2026 09:47:36 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29716</guid>
					<title><![CDATA[Remove Animation on Mobile]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29716</link>
					<pubDate>Thu, 18 Aug 2016 20:07:00 +0000</pubDate>
					<dc:creator>aaron</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>Is there a way to remove animation effects for mobile devices? The animations work great on desktop but on mobile they don&#8217;t work smoothly. Elements just pop into the viewport. Any help would be much appreciated.</p>
<p>Aaron</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29721</guid>
					<title><![CDATA[Reply To: Remove Animation on Mobile]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29721</link>
					<pubDate>Fri, 19 Aug 2016 07:16:40 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Aaron,</p>
<p>Which ones?<br />
Check the \stylesheets\animations.css file, most are there!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29725</guid>
					<title><![CDATA[Reply To: Remove Animation on Mobile]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29725</link>
					<pubDate>Fri, 19 Aug 2016 15:51:57 +0000</pubDate>
					<dc:creator>aaron</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>Not sure what you&#8217;re asking when you say &#8220;Which ones?&#8221;. Maybe I didn&#8217;t explain what I need properly. I want to disable all animation effects for mobile devices. I want the animation to work on desktop, just not mobile. If that&#8217;s possible. Here is a <a href="http://stromsoeins.wpengine.com/contact-us/" rel="nofollow">link</a> to the site I&#8217;m currently building. As you will see the animation for the contact info is smooth on desktop but on a mobile device it pops into the screen which isn&#8217;t a very nice effect for the user and that&#8217;s why I would like to remove the effect or fix it if you have a solution.</p>
<p>Thanks,<br />
Aaron</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29727</guid>
					<title><![CDATA[Reply To: Remove Animation on Mobile]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29727</link>
					<pubDate>Mon, 22 Aug 2016 06:43:05 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>What I meant was whether you were talking about the CSS animations set per element or the custom ones that are specific for some different elements (like bar graphs or top icon boxes like in your case).<br />
The latter you can find in your js/common.js!<br />
Some items can be disabled &#8211; yes, some &#8211; you can&#8217;t as they animate to their final state by default &#8211; the bar graph, and the counters.</p>
<p>If you want to disable a specific one you can easily wrap it in a conditional like so, from:</p>
<pre><code>// Top Icon Box
$(e).find(&#039;.top_icon_box.boc_animate_when_almost_visible:not(.boc_start_animation)&#039;).each(function (i, e) {
	var delay = 300,
	stagger = 200 + i*500;

	// Each child
	$(this).children().each(function (i, e) {
		
		if(!$(this).is(&quot;a&quot;)){
			$(e).trans(i * delay + stagger + &#039;ms&#039;, &#039;-delay&#039;);
		}else {
			$(e).children(&#039;.icon_holder&#039;).trans(i * delay + stagger + &#039;ms&#039;, &#039;-delay&#039;);
		}
	});
});	</code></pre>
<p>to:</p>
<pre><code>// Top Icon Box
if(!boc_is_mobile){
$(e).find(&#039;.top_icon_box.boc_animate_when_almost_visible:not(.boc_start_animation)&#039;).each(function (i, e) {
	var delay = 300,
	stagger = 200 + i*500;

	// Each child
	$(this).children().each(function (i, e) {
		
		if(!$(this).is(&quot;a&quot;)){
			$(e).trans(i * delay + stagger + &#039;ms&#039;, &#039;-delay&#039;);
		}else {
			$(e).children(&#039;.icon_holder&#039;).trans(i * delay + stagger + &#039;ms&#039;, &#039;-delay&#039;);
		}
	});
});
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29731</guid>
					<title><![CDATA[Reply To: Remove Animation on Mobile]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29731</link>
					<pubDate>Mon, 22 Aug 2016 15:22:48 +0000</pubDate>
					<dc:creator>aaron</dc:creator>

					<description>
						<![CDATA[
						<p>Got it. </p>
<p>Now, if I want to disable the CSS animations, how do I go about doing that?</p>
<p>Thanks,<br />
Aaron</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29737</guid>
					<title><![CDATA[Reply To: Remove Animation on Mobile]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29737</link>
					<pubDate>Tue, 23 Aug 2016 06:24:14 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Aaron,</p>
<p>They are disabled by default for devices with resolution below 768px so that should be sufficient for you. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29746</guid>
					<title><![CDATA[Reply To: Remove Animation on Mobile]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29746</link>
					<pubDate>Tue, 23 Aug 2016 18:54:07 +0000</pubDate>
					<dc:creator>aaron</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>Is there a way I can increase the default disabling size from 768px to a higher value? When I view the site on an iPhone 6 or my Droid Turbo II the animations are not disabled. I assuming that&#8217;s because of their a higher resolution than 768px. </p>
<p>Thank you for all your help with this matter!</p>
<p>Aaron</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29752</guid>
					<title><![CDATA[Reply To: Remove Animation on Mobile]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29752</link>
					<pubDate>Wed, 24 Aug 2016 07:01:19 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>Sure, you can either raise the value in that media query from 769 to a higher value.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29762</guid>
					<title><![CDATA[Reply To: Remove Animation on Mobile]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/remove-animation-on-mobile-2/#post-29762</link>
					<pubDate>Fri, 26 Aug 2016 17:25:34 +0000</pubDate>
					<dc:creator>aaron</dc:creator>

					<description>
						<![CDATA[
						<p>I raised the value in the media query. It fixed my issues.</p>
<p>Thank you for all of your help!</p>
<p>Aaron</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

