I am trying to put some pictures (with hyperlinks) in the on hover expanding DIV BOX > once the box is fully opened after (5 seconds).
I have made a really bad attempt to do this by creating a zaxis and to make the content appear over the collapsible expandable box.
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
div {
width: 10px;
height: 600px;
background: rgba(55, 55, 55, .8);
-webkit-transition-property: width; /* Safari */
-webkit-transition-duration: 4s; /* Safari */
-webkit-transition-delay: 2s; /* Safari */
transition-property: width;
transition-duration: 5s;
transition-delay: 0s;
}
html {
background: url(BG1.jpg) no-repeat center top fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
div:hover {
width: 600px;
}
div.image55:after {
content:url(http://placehold.it/350x150);
}
.style2 {
text-align: right;
font-family: "Calibri Light";
}
.style3 {
border-width: 0;
}
</style>
</head>
<body>
<div class="style2"><br>
<a href=""><img alt="" src="editorial.png" width="100" height="20"
class="style3"></a></div>
<div class="image55" style="position: absolute; left: 20px; top: 20px;
z-index: 1"></div>
</body>
</html>