<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>mouse move Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/mouse-move/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/mouse-move/</link>
	<description>Code Solution</description>
	<lastBuildDate>Sat, 25 Mar 2023 08:04:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>mouse move Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/mouse-move/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Mouse Move Text Animation Effect Example</title>
		<link>https://codeplaners.com/mouse-move-text-animation-effect-example/</link>
					<comments>https://codeplaners.com/mouse-move-text-animation-effect-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 25 Mar 2023 08:04:26 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[animation effect]]></category>
		<category><![CDATA[CSS and Html]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mouse move]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1472</guid>

					<description><![CDATA[<p>Hi Dev, Today, i will show you mouse move text animation effect example. This article will give you simple example of mouse move text animation effect example. you will mouse move text animation effect example. In this article, we will implement a mouse move text animation effect example. So, let’s follow few steps to create &#8230; <a href="https://codeplaners.com/mouse-move-text-animation-effect-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Mouse Move Text Animation Effect Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/mouse-move-text-animation-effect-example/">Mouse Move Text Animation Effect Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i will show you mouse move text animation effect example. This article will give you simple example of mouse move text animation effect example. you will mouse move text animation effect example. In this article, we will implement a mouse move text animation effect example. </p>
<p>So, let’s follow few steps to create example of mouse move text animation effect example.</p>
<h3 class="step_code">Example</h3>
<p><strong>index.html</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;Mouse Move Text Animation Effects Example - codeplaners&lt;/title&gt;
    &lt;style&gt;
        
main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #d3f6db;
}

.animated-text {
  font-family: &quot;Arial Black&quot;, Arial, sans-serif;
  font-weight: 900;
  font-size: 24vh;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: radial-gradient(#772d8b, #d3f6db 90%);
  background-repeat: no-repeat;
  background-size: 600% 600%;
  background-position: 50% 50%;
}
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    
   &lt;div class=&quot;main&quot;&gt;
     &lt;div class=&quot;animated-text&quot;&gt;
    CODE&lt;br/&gt;PLANERS
    &lt;/div&gt;
   &lt;/div&gt;

   &lt;script&gt;
    let textEl;

document.addEventListener('DOMContentLoaded', (e) =&gt; {
  textEl = document.querySelector('.animated-text');
});

//  ----

function onMouseMove(e) {
  const xRatio = e.x/window.innerWidth;
  const yRatio = e.y/window.innerHeight;
  
  const xPerc = 100 - (xRatio * 100);
  const yPerc = 100 - (yRatio * 100);
  
  textEl.style.backgroundPosition = `${xPerc}% ${yPerc}%`;
}

// If copying, throttle onMouseMove
window.addEventListener('mousemove', onMouseMove);

   &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/mouse-move-text-animation-effect-example/">Mouse Move Text Animation Effect Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/mouse-move-text-animation-effect-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
