<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Himanshu Yadav</title>
    <description>The latest articles on DEV Community by Himanshu Yadav (@himanshuffgeek).</description>
    <link>https://dev.to/himanshuffgeek</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1054131%2F2dd318d1-ca55-4dd1-af0d-bbafd6351488.jpg</url>
      <title>DEV Community: Himanshu Yadav</title>
      <link>https://dev.to/himanshuffgeek</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/himanshuffgeek"/>
    <language>en</language>
    <item>
      <title>Animated words are not working.</title>
      <dc:creator>Himanshu Yadav</dc:creator>
      <pubDate>Tue, 28 Mar 2023 15:05:43 +0000</pubDate>
      <link>https://dev.to/himanshuffgeek/animated-words-are-not-working-510g</link>
      <guid>https://dev.to/himanshuffgeek/animated-words-are-not-working-510g</guid>
      <description>&lt;h2&gt;
  
  
  Animated words are not working.
&lt;/h2&gt;

&lt;p&gt;Only &lt;strong&gt;Hi&lt;/strong&gt; is showing animation plz help me I am stuck&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import './index.scss';

const AnimatedLetters =({ letterClass, strArray, idx}) =&amp;gt; {
    return (
        &amp;lt;span&amp;gt;
            {
            strArray.map((char, i) =&amp;gt; (
                &amp;lt;span key={char+i} className={`${letterClass}_${i+ idx}`}&amp;gt;
                    {char}
                &amp;lt;/span&amp;gt;
            ))
            }
        &amp;lt;/span&amp;gt;

    )
}
export default AnimatedLetters

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;text-animate {
    display: inline-block;
    opacity: 0;
    animation: bounceIn 1s 1s ;
    animation-fill-mode: forwards;
    min-width: 10px;
}

@for $i from 1 through 35 {
    .text-animate._#{$i} {
        animation-delay: #{$i/10}s;
    }
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import { useState } from 'react';
import { Link } from 'react-router-dom';
import Loader from 'react-loaders';
import LogoTitle from '../../assets/images/logo-s.png';
import AnimatedLetters from '../AnimatedLetters';
import './index.scss';
const Home = () =&amp;gt; {
      const [letterClass, setLetterClass] = useState('text-animate')
      const nameArray = ['i','m','a','n','s','h','u']
      const jobArray = ['w','e','b',' ','d','e','v','e','l','o','p','e','r','.']


    return (
        &amp;lt;div className="container home-page"&amp;gt;
            &amp;lt;h1&amp;gt;
                &amp;lt;span className={letterClass}&amp;gt;H&amp;lt;/span&amp;gt;
                &amp;lt;span className={`${letterClass} _12`}&amp;gt;i,&amp;lt;/span&amp;gt;
                &amp;lt;br/&amp;gt;  
                &amp;lt;span className={`${letterClass} _13`}&amp;gt;I&amp;lt;/span&amp;gt;
                &amp;lt;span className={`${letterClass} _14`}&amp;gt;'m&amp;lt;/span&amp;gt;
            &amp;lt;img src={LogoTitle} alt="developer"/&amp;gt;
            &amp;lt;AnimatedLetters letterClass={letterClass} strArray={nameArray}
            idx={15}/&amp;gt;
            &amp;lt;br/&amp;gt;

            &amp;lt;AnimatedLetters letterClass={letterClass} 
            strArray={jobArray} idx={22}/&amp;gt;
            &amp;lt;/h1&amp;gt;
            &amp;lt;h2&amp;gt;Frontend Developer / Javascript Expert / Open-Source COntributor&amp;lt;/h2&amp;gt;
            &amp;lt;Link to="/contact" className='flat-button'&amp;gt;CONTACT-ME&amp;lt;/Link&amp;gt;
        &amp;lt;/div&amp;gt;
    )
}

export default Home

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>react</category>
    </item>
  </channel>
</rss>
