我試圖從屏幕的水平中心放置一個按鈕10px。這是按鈕代碼。該按鈕使用一些奇特的懸停效果,不會隨按鈕移動。我怎樣才能把按鈕10px離開屏幕的水平中心?自定義懸停效果位置問題
body {
background-color: green;
}
.button-2 {
width: 140px;
height: 50px;
border: 2px solid white;
float: left;
text-align: center;
cursor: pointer;
position: relative;
box-sizing: border-box;
overflow: hidden;
margin: 0 0 40px 50px;
}
.button-2 a {
font-family: arial;
font-size: 16px;
color: white;
text-decoration: none;
line-height: 50px;
transition: all .5s ease;
z-index: 2;
position: relative;
}
.eff-2 {
width: 140px;
height: 50px;
top: -50px;
background: white;
position: absolute;
transition: all .5s ease;
z-index: 1;
}
.button-2:hover .eff-2 {
top: 0;
}
.button-2:hover a {
color: #666;
}
.watch-video-position {}
<div class="watch-video-position">
<div class="button-2 watch-video-position">
<div class="eff-2 watch-video-position"></div>
<a href="#"> CLICK ME </a>
</div>
</div>
當你說 「10px的關閉屏幕的水平中心」,你的意思是你想要的按鈕的中心將10px的到屏幕中央的左/右,或按鈕的左邊緣,或按鈕的右邊緣?請提供更多詳細信息,以便我們瞭解您嘗試實現的確切行爲。 – Serlite
感謝隊友,你可以問我需要的任何更多信息,以及它需要爲你工作的方式。 –
謝謝,我很好。 – sanjihan