テキスト<a href="#" class="cp_textlink05">リンクテキスト-link text-</a>テキスト
.cp_textlink05 {
position: relative;
display: inline-block;
padding: 5px;
color: #3949AB;
text-decoration: none;/*元々のアンダーラインを非表示にしておく*/
}
/*擬似要素の設定(共通)*/
.cp_textlink05::before,
.cp_textlink05:after {
position: absolute;
bottom: 0;
content: '';
transition: all 0.3s ease;
}
/*hover前の表示(背景塗りつぶし)*/
.cp_textlink05:before {
right: 50%;
left: 50%;
width: 0;
height: 100%;
border-radius: 3px;
background-color: #3949AB;
opacity: 0.3;
}
/*hover時の表示(背景塗りつぶし)*/
.cp_textlink05:hover:before {
left: 0;
width: 100%;
}
/*hover前の表示(ライン)*/
.cp_textlink05::after {
left: 0;
width: 100%;
height: 100%;
border-top: 1px solid #3949AB;
border-bottom: 1px solid #3949AB;
}
/*hover時の表示(ライン)真ん中を起点に消える*/
.cp_textlink05:hover::after {
right: 50%;
left: 50%;
width: 0%;
}