I am working on displaying a vertical banner that slides out horizontally from the right side of the screen when the user clicks on the open button/div, and also has the ability to close it. The basic design concept is illustrated in the sample image below.
To see my progress, I have created a demonstration on CodePen: http://codepen.io/anon/pen/oXgePX
<div class="horizontal-slide" id="other-menu"><<</div>
<div class="menu-other slide-right slide-opened" id="other-menu-content">
horizontal on right slide div
</div>
UPDATE:
I was able to achieve the desired effect by enclosing the banner and button within another div.
.wrapper{
float:right;
position:absolute;
right:0;
}
Here is an improved example: http://codepen.io/anon/pen/aOzyxo
I am still working on making the button slide along with the banner for a smoother appearance.