javascript - Css/Jquery Slide Up Panel -


i trying make slide panel reveals hidden menu css/jquery if @ link http://www.responsivefilemanager.com/filemanager/dialog.php notice when hover on file, hidden menu revealed. can give me example how can accomplish this?

demo

html

<br/><br/><br/>  <div class="container-two-div">     <div class="contain-things back">             </div>     <div class="contain-things front">         file     </div> </div> 

css

.container-two-div , .contain-things {     height:50px;     max-height:50px;     min-height:50px;     overflow:visible;     background-color:gray;     width:100px; }  .front {     position:relative;     top:-50px;     transition: 1s; /* transition when mouse on */     background-color:red;     color:white; }  .container-two-div:hover .front {     top:-100px; } 

Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -