Skip to main content

Hide Animation with Hover

How to Hide the Text by HTML with the Hover Effect 





So, The Html-Css are the one by using you can bring the change. A lots of Design and Animations you can make through coding. 
    Here, I done with the Hide Text code, In which The text hide with the mouse pointer and with Animation. It also in the categories of MouseMove Operation. Just do it once and expand your knowledge with codoblog.

#CODE

                      
                            <html>
 <head>
 <meta name="viewport" content="width=device-width, initial-scale=1" >
  <style type="text/css">
  body{
  margin: 0;
  padding: 0;
  min-width: 100vh;
  width: 100%;
  display: flex;
  align-items:center;
  justify-content:center;
  text-align: center;
  font-family: sans-serif;
  }
  h1{
  transition:0.5s;
  font-size: 4em;
  padding: 0;
  margin: 0;
  line-height: 1em;
  }
  h1 span{
  display: block;
  position: relative;
  text-transform: uppercase;
  transition:0.5s;
  }
  h1 .s1::before{
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 10px);
  width: 50%;
  height: 20px;
  background: #f00;
  transform-origin:right;
  transform-scaleX(0);
  transition:0.5s;
  z-index: 1;
  }
  h1 .s2::before{
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 10px);
  width: 50%;
  height: 20px;
  background: #f00;
  transform-origin:left;
  transform-scaleX(0);
  transition:0.5s;
  z-index: 1;
  }
  h1:hover .s1:before{
  transform:scaleX(1);
  }
  h1:hover .s2:before{
  transform:scaleX(1);
  }
  h1 span hide{
  transition:0.5s;
  transition-delay:1s;
  }
  h1:hover span hide{
  transition-delay:1s;
  color: #f00;
  opacity: 0;
  }
  h1:hover .s1 hide{
  padding-left: 25px;
  }
  h1:hover .s2 hide{
  padding-right: 35px;
  }
  </style>
 </head>
 <body>
  <h1>
  <span class="s1">Do<hide>n't</hide></span>
  <span class="s2"><hide>Qu</hide>it</span>
  </h1>
 </body>
</html>


#OUTPUT : 
                                                                   After Run

   

                


                                                         When Mouse Pointer ON the Text




    That's the way codoblog use...😀😀😀

                Do it now..

 #Love CodoBlog





Comments

The Most Populer

Aatmnirbhar Bharat 2020 | आत्मनिर्भर भारत | Bharat Navnirman | best article in marathi

#VocalForLocal   #DigitalIndia     #Swadeshi     #BeIndianBuyIndian   आत्मनिर्भर भारत              निसर्गाकडे लक्ष्य दिले तर एक बाब लक्षात येते कि , एक सजीव प्राणी दुसऱ्या सजीव प्राणी निर्माण करतो , तसेच दुसऱ्या प्राण्यावर अवलंबून असतो नंतर मात्र हा नवीन सजीव आत्मनिर्भर होतो व स्वतंत्र पने जगू लागतो.                     प्राचीन भारतीय समाजव्यवस्थेवर एक नजर टाकल्यास प्रामुख्याने एक बाब  लक्षात येते कि प्राचीन खेडी (छोटे गाव ) हि स्वयंपूर्ण होती. आणि सर्वात महत्वाची गोष्ट हि कि , त्यांच्या सर्व गरजा  ह्या त्यांच्या खेड्यातच पूर्ण व्हायच्या. हि गवे इतरांवर अवलंबून व परावलंबी मुळीच नव्हती . मुळात यालाच आपण आत्मनिर्भरता असे म्हणू शकतो . पण काळाच्या ओघात शासनव्यवस्था बदलत गेली आणि हि स्वयंपूर्ण असलेली खेडी पुढे परावलंबी बनत गेली . यालाच आपण गुलामगिरी म्हणू शकतो , आणि एकदा का आपण गुलाम झालो कि आपली अस्मिता , विद्वत्ता व कचरा यात थोडाही ...

Random Captcha Generator

 How to generate random captcha || JAVASCRIPT techinc Here, you will going to teach how to generate random captcha by javascript #CODE: <!DOCTYPE html>     <html>         <head>             <title></title>         </head>         <body>             <canvas width=150 height=70 style="border:1px solid black;"></canvas><br>             <button style="width:150px;             height:40px;             color: red;             -webkit-tap-highlight-color:rgba(0,0,0,0);" onclick="generateCaptcha()">Generate Captcha</button>             <style type="text/css">                 body{     ...

Html for beginners || What is Html || Where to start | Watch the codoblog video of html

 Hey all ..!     Start your carrier with by learning new skill which name is HTML , If you are interested in the web designing then you must started watch the video of codoblog.    If you are very unknown about HTML language then start from the scratch with codoblog's efforts. Watch series of codoblog and feel free to comment your doubt.                                                        Click to Launch for new beginning ....