<?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: skwebdeveloper</title>
    <description>The latest articles on DEV Community by skwebdeveloper (@skwebdeveloper).</description>
    <link>https://dev.to/skwebdeveloper</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F213725%2Fb2295f14-3069-4881-afff-8d24ba376df5.jpeg</url>
      <title>DEV Community: skwebdeveloper</title>
      <link>https://dev.to/skwebdeveloper</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/skwebdeveloper"/>
    <language>en</language>
    <item>
      <title>Transition CSS</title>
      <dc:creator>skwebdeveloper</dc:creator>
      <pubDate>Tue, 08 Dec 2020 05:45:55 +0000</pubDate>
      <link>https://dev.to/skwebdeveloper/transition-css-54h8</link>
      <guid>https://dev.to/skwebdeveloper/transition-css-54h8</guid>
      <description>&lt;h2&gt;
  
  
  What is Transition
&lt;/h2&gt;

&lt;p&gt;Transition is the easiest way to create animation in CSS. So, I am not going to deep dig into the history of transition. We developers always wanted to see the end result and then we move forward. So, here I am attaching a Codepen below for end result.&lt;/p&gt;

&lt;h2&gt;
  
  
  Have a look and then move forward.
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://codepen.io/sk3213/pen/XWjdwMY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;So, let's start with some basics.&lt;/p&gt;

&lt;h2&gt;
  
  
  Syntax :
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;transition:
property
duration
timing-function
delay;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Well, there are thousands of ways to use it, but most of the time it is used in case of hovering. So, let me take an example to explain it in brief.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.First{
background: black;
transition: background 1s ease-in; 
// Here I am writing background because I want to change background on hover
}

.First:hover {
background: red;
// Magic 
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Transition timing function values
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1. linear
2. ease
3. ease-in
4. ease-out
5. ease-in-out
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Which Properties you can Animate using CSS Animations
&lt;/h2&gt;

&lt;p&gt;You can find out here a list of all the properties you can animate via transition&lt;/p&gt;

&lt;h2&gt;
  
  
  Sources
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_animated_properties"&gt;https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_animated_properties&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Advance
&lt;/h2&gt;

&lt;p&gt;cubic-bezier - &lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/easing-function"&gt;https://developer.mozilla.org/en-US/docs/Web/CSS/easing-function&lt;/a&gt;&lt;/p&gt;

</description>
      <category>css</category>
      <category>transition</category>
      <category>html</category>
      <category>animation</category>
    </item>
    <item>
      <title>Dark mode </title>
      <dc:creator>skwebdeveloper</dc:creator>
      <pubDate>Fri, 20 Nov 2020 13:08:11 +0000</pubDate>
      <link>https://dev.to/skwebdeveloper/dark-mode-1n91</link>
      <guid>https://dev.to/skwebdeveloper/dark-mode-1n91</guid>
      <description>&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/sk3213/embed/ExyzQVp?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>codepen</category>
      <category>css</category>
      <category>javascript</category>
      <category>html</category>
    </item>
  </channel>
</rss>
