Skip to main content

my profile code by html || shutter animation with hover effect of html-css

                       

                      My Profile Viewer





#CODE : 

     <!-- Created By Aziz Sobirov -->
<!DOCTYPE html>
<html>
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
       <link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
        <title>Img hover</title>
        <style type="text/css">
          *{
    margin:0;
    padding:0;
    box-sizing:border-box ;
}
body{
    display:flex;
    min-height:100vh;
    align-items:center;
    justify-content:center;
    background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
}
#Box{
    height:150px;
    width:300px;
    padding:10px;
    border:4px solid #ff0055;
    border-radius:10px;
    box-shadow:0 0 5px 5px #ff0055,
               0 0 10px 5px #ff0055,
               0 0 15px 5px #ff0055; 
    transition-duration:1s;
    background:#fff;
}
#Box:hover {
    height:400px;
}
#Box:hover #text{
    opacity:1;
    transition-duration:2s;
    top:40px;
}

#Box:hover #imgBox{
    top:20px;
    width:200px;
    height:200px;
    transition-duration:2s;
    border-radius:50%;
}
#imgBox {
     position:relative ;
     top:-100px;
     left:0;
     height:150px ;
     width:200px;
     border:2px solid skyblue;
     border-radius:0%;
    box-shadow:0 0 5px 5px grey;
    z-index:2;
}

#text{
    position:relative ;
    top:-200px;
    text-align:center ;
    opacity:0;
    z-index:1;
}
span{
    font-weight:bold;
    border:4px solid green;
}
a{
    text-decoration:none;
    color:black;
}
/*Follow*/
#follow{
    position:absolute ;
    top:0;
    right:0;
    display:flex;
    min-height:600px;
    align-items:center;
    justify-content:center;
    z-index:2;
}
#follow #touch{
    position:absolute  ;
    top:0;
    right:0;
    height:80px;
    width:80px;
    font-size:30px;
    background-color:#00adff;
    box-shadow:0 0 5px 5px white;
    border-radius:0px 0px 0px 100px;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    transition-duration:1s;
}
#follow #touch:hover{
    border-radius:0px;
}


        </style>
    </head>
    <body>
    <div id="Box">
    
       <center> <img src="profile.jpeg" id="imgBox"></center>
         
      <div id="text">
          <h2>CodoBlog</h2>
          <p>
Thank you for watching this tutorial.  <br> 
If you like <strong>codoblog</strong>, then please Subscribe and share. <strong>#LoVe CodoBlog</strong><br/><br> 
<a href="https://codemaifil.blogspot.com" >       
<span>Follow Me</span>
</a>
          </p>
      </div> 
      
            <!--Follow Bar-->
         <div id="follow" >
       <div id="touch">
   <i class="fa fa-user" id="barr"></i>
       </div>
      
    </div>
    <script>
        $(function() {
    $("#touch").click(function() {
    
    });
});
    </script>          
       
      </div>
      

    </body>
</html>

#OUTPUT:


 

...








So, this is the output. 
















Comments

The Most Populer

How to Generate Barcode || code for Barcode

|| Random Barcode Generator || Barcode on the basis length of text || #CODE :                 Barcode.html ==>        <html>        <head>            <title>Barcode Generator</title>            <link rel="stylesheet" href="Barcode.css">     </head>     <body>         <div>Barcode Generator</div>         <input type="text" placeholder="Type..."/>         <button onclick="generate()">Generate Barcode</button>           <svg id="barcode"></svg>           <script src="https://cdnjs.cloudflare.com/ajax/libs/jsbarcode/3.11.0/JsBarcode.all.min.js"></script>           <script>               JsBarcode("#barcode","#Hello",{                   background:"#161748",                   lineColor:"#ffffff"               });               function generate(){                   var val = docu

Design 3D Block with hover animation

        How To Design The 3D Block With Hover Effect. Here is the code of How to design the 3D block design by using only html and css.                          By using html-css you can make a lots of designs and animations. Few done by me                          and   somewhat expect from you . Try to watch all the videos by codoblog. And stay                                              connected.                 CODE -                         <html>           <head> <style type="text/css"> body{ background-color: black; } .wrap{ margin-top: 150px; perspective:1000px; perspective-origin:50% 50%; } .cube{ margin: auto; position: relative; height: 200px; width: 200px; transform-style:preserve-3d; } .cube > div{ position:absolute; box-sizing:border-box; padding: 10px; height: 100%; width: 100%; opacity: 0.7; background-color: #000; border: solid 1px #eeeeee; color: r

Code for icon design | camera icon code | html-css code

 Camera ICON creation || Code for the camera icon  Here is the code for camera icon design..try with your efforts..! ICON #CODE : >>                <!DOCTYPE html> <html> <head> <title>Camera Icon Creation</title> <style type="text/css"> body{ margin:0; background-color: lightblue; } .outer{     width: 50%;     height: 100vh;     display: flex;     justify-content: center;     align-items: center;     margin: 0 auto; } .body{     background-color: white;     border-radius: 30%;     width: 11rem;     height: 11rem;     position: relative;     box-shadow: 1px 1px 6px 1px slategrey; } .red{     border-radius: 50%;     background-color: crimson;     width: 10px;     height: 10px;     position: absolute;     top: 10%;     left: 10%;     margin: 4px; } .flash{     width: 20%;     height: 8px;     border-radius: 25% / 30%;     background-color: #ccc;     box-shadow: inset 1px 1px 6px 1px slategrey;     position: absolute;