<a class="weixin" href="javascript:"> wechat </a>
/*微信二維碼*/ .weixin{ position:relative; } .weixin::after{ content: url(images/qrcode.gif); position: absolute; right: -28px; top: -135px; z-index: 99; width:120px; height: 120px; border: 5px solid #0095ba; border-radius: 4px; transform-origin: top right; transform: scale(0); opacity: 0; -webkit-transition: all .4s ease-in-out; -o-transition: all .4s ease-in-out; transition: all .4s ease-in-out; }
.weixin:hover::after{ transform:scale(1); opacity: 1; }
<a class="social weixin" href="javascript:"> <img class="qrcode" src="http://你的路徑/qrcode.gif" alt="微信二維碼"> 此處爲微信圖標 </a>
.weixin { position: relative; } .weixin img.qrcode { position: absolute; z-index: 99; top: -135px; right: -28px; width: 7.5rem; max-width: none; height: 7.5rem; transform: scale(0); transform-origin: top right; opacity: 0; border: .3125rem solid #0085ba; border-radius: .25rem; -webkit-transition: all .4s ease-in-out; -o-transition: all .4s ease-in-out; transition: all .4s ease-in-out; } .weixin:hover img.qrcode { transform: scale(1); opacity: 1; }