I'm a little abashed as to why this Sticky footer won't allow a slide toggle animation?
Is there a particular reason why this won't work properly?
#PopupMessage{
width:95%;
height:30px;
background: #999;
color: #ececec;
position:fixed;
bottom:0px;
margin:2%;
padding:1%;
border-radius:10px;
-webkit-box-shadow: 0px 5px 5px rgba(0,0,0,.9);
-moz-box-shadow: 0px 5px 5px rgba(0,0,0,.9);
box-shadow: 0px 5px 5px rgba(0,0,0,.9);
transition: all 0.8s;
display:none;
}
#PopupMessage:hover{
opacity:0;
}
The hover effect works, yet for some reason the 'slideToggle' won't work in this context?
I also have an issue (not sure if it is project specific, since it doesn't happen on the fiddle) is that my footer disappears after a few seconds (as if i've double clicked, or similar).
Any suggestions as to why this is occuring?