<?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: Vaishali1192</title>
    <description>The latest articles on DEV Community by Vaishali1192 (@vaishali1192).</description>
    <link>https://dev.to/vaishali1192</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%2F599178%2Fb83d0bb9-b285-46be-b296-6c087f80d3cf.png</url>
      <title>DEV Community: Vaishali1192</title>
      <link>https://dev.to/vaishali1192</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vaishali1192"/>
    <language>en</language>
    <item>
      <title>Create Zoom in zoom out animation effect in CSS</title>
      <dc:creator>Vaishali1192</dc:creator>
      <pubDate>Thu, 22 Apr 2021 08:03:16 +0000</pubDate>
      <link>https://dev.to/vaishali1192/create-zoom-in-zoom-out-animation-effect-in-css-5hmg</link>
      <guid>https://dev.to/vaishali1192/create-zoom-in-zoom-out-animation-effect-in-css-5hmg</guid>
      <description>&lt;ul&gt;
&lt;li&gt;To create zoom in zoom out effect we need to focus on two elements "width" and "height". &lt;/li&gt;
&lt;li&gt;First define proper height width of an element.&lt;/li&gt;
&lt;li&gt;Add Css to that element&lt;/li&gt;
&lt;li&gt;We need to use @keyframes to define animation &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;&lt;br&gt;
@keyframes zoom-in-zoom-out {&lt;br&gt;
  0% {&lt;br&gt;
    transform: scale(1, 1);&lt;br&gt;
  }&lt;br&gt;
  50% {&lt;br&gt;
    transform: scale(1.5, 1.5);&lt;br&gt;
  }&lt;br&gt;
  100% {&lt;br&gt;
    transform: scale(1, 1);&lt;br&gt;
  }&lt;br&gt;
}&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/vaishali1192/embed/QWdJZVy?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

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