我正在尋找在按鈕上應用標籤剝離效果。按鈕上的標籤剝離效果
我網站上的每個按鈕都會有一個隱藏在按鈕下方的優惠券代碼。當用戶懸停在按鈕上時,它只顯示部分代碼,但未完全顯示。這個想法是增加點擊率。
想要獲得類似於此頁上的「獲取優惠券代碼」按鈕的內容。
https://www.goodsearch.com/coupons/victorias-secret#filter-promo-code
如果懸停顯示優惠券代碼鼠標,你就會看到效果。它只是略微揭示了底層代碼。
到目前爲止,我只能夠去這個
.btn.btn-code {
background-color: #ff9800;
color: #FFFFFF;
border-radius: 4px;
width: 80%;
height: 35%;
position: relative;
}
.btn.btn-code:before {
content: '';
position: absolute;
top: 0;
right: 0;
border-top: 20px solid white;
border-left: 30px solid blue;
/*border-left-color:#e58800;*/
width: 0;
}
<button class="btn btn-code">
Get Code
</button>
任何幫助我如何能做到這一點。我知道我離最終結果還很遠,但無法進一步發展,那就是爲什麼在這裏問這個問題。
不太清楚,你想達到什麼目的。 – aavrug
鏈接的JSFiddle與此有什麼關係? – Xufox
@aavrug增加了更多細節。請讓我知道如果它仍然不清楚。 –