Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<div id="ProjectPicture">
  <img src="https://lh4.googleusercontent.com/-NnUDSkolO6M/AAAAAAAAAAI/AAAAAAAAAPg/Rp2eTavq49w/s120-c/photo.jpg">
</div>
<div id="overlayInfo" style=""mouseoverlay:none>
  hello
     <li class="fa fa-cloud" title="Web"></li>
     <li class="fa fa-shopping-cart" title="Shopping Cart"></li>
</div>
</body>
</html>
 
#overlayInfo {
    position: absolute;
    width: 97%;
    top: 10px;
    height: 183px;
    bottom: 0%;
    border: 0px solid;
    z-index: 99999;
    background-color: rgba(255, 255, 255, 0.75);
}
#ProjectPicture {
    z-index: 1;
    border: 0px solid;
}
 
 $(document).ready(function ()
        {
          
            $("#ProjectPicture").mouseover(function() {
    // do work for mouse over
                $("#overlayInfo").show();
}).mouseleave(function() {
    $("#overlayInfo").hide();
    // do work for mouse out
});
        }); 
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers