サイトの下部にコントロール バーを作成しました。今、このバーの外側の上部に小さな矢印が必要です。でも外には出せない!これが私の問題の例です: http://jsfiddle.net/HHcwb/2/
コード: HTML:
<div id="control">
<p title="Show Bar" id="show">]</p>
</p>
CSS:
#control{
position:absolute;
bottom:0px;
background:rgba(51, 51, 51, 0.7);
width:30%;
height: 75px;
text-align:center;
left:35%;
border-top-left-radius:100px 50px;
border-top-right-radius:100px 50px;
}
#control p{
position:absolute;
margin:0;
cursor:pointer;
font-family:'WebSymbolsRegular';
color:#bbb;
font-size:16px;
top:1px;
transition:color 0.3s ease;
-webkit-transition:color 0.3s ease;
-moz-transition:color 0.3s ease;
-o-transition:color 0.3s ease;
}
#control p:hover{
color:#E4DBBF;
}
#show{
left:49%;
top:-20px;
}