<!-- 赞赏按钮 -->
<h3 class="tp_dashang_but" id="exceptional">赞赏</h3>
<!-- 遮罩层 -->
<div class="tp_dashang_zhezhao" id="mask"></div>
<div class="tp_dashang_content" id="dashangCon">
<strong id="ShutDown">关闭</strong>
<!-- 头像 -->
<img class="tp_dashang_touxiang" src="头像路径" >
<h4>原创不易,感谢支持!</h4>
<!-- 二维码部分 -->
<div class="tp_dashang_con">
<!-- 支付宝 -->
<div class="tp_dashang_erweima">
<div>
<img src="支付宝收款码路径" >
</div>
<h2>支付宝打赏</h2>
</div>
<!-- 微信 -->
<div class="tp_dashang_erweima">
<div>
<img src="微信收款码路径" >
</div>
<h2>微信打赏</h2>
</div>
</div>
<p class="tp_dashang_tixing">扫码打赏,建议金额1-10元<br/>提醒:打赏金额将直接进入对方账号,无法退款,请您谨慎操作。<br/><a href="https://www.28286.cn" style="text-decoration:none; color:#d1d1d1;" target="_blank">Powered By 二八源码</a></p>
</div>
<style>
/*赞赏按钮*/
.tp_dashang_but{
color: #fff;
font-size: 18px;
display: block;
width: 90px;
height: 90px;
line-height: 90px;
border-radius: 50%;
background: red;
text-align: center;
margin: 5px auto;
cursor: pointer;
}
.tp_dashang_but:hover{
transition: all .5s;
background: #e74851;
}
/*遮罩层*/
.tp_dashang_zhezhao{
display: none;
width: 100%;
height: 100%;
background: rgba(0,0,0,.2);
position: fixed;
top: 0;
left: 0;
z-index: 9988;
}
.tp_dashang_content{
display: none;
width: 550px;
height: 550px;
border-radius: 10px;
background: #fff;
position: fixed;
left: 50%;
top: 50%;
margin-left: -275px;
margin-top: -275px;
z-index: 9999;
}
.tp_dashang_content strong{
color: #000;
font-size: 14px;
position: absolute;
top: 4px;
right: 8px;
cursor:pointer;
}
/*头像*/
.tp_dashang_touxiang{
display: block;
width: 90px;
height: 90px;
border-radius: 50%;
margin: 20px auto;
border: 5px dashed #e74851;
}
.tp_dashang_content h4{
color: #555;
font-size: 14px;
line-height: 50px;
text-align: center;
font-weight: bold;
}
/*二维码部分*/
.tp_dashang_con{
width: 100%;
display: flex;
justify-content: space-between;
}
.tp_dashang_erweima{
width: 50%;
display: flex;
flex-direction: column;
align-items: center;
}
.tp_dashang_erweima div{
width: 220px;
height: 220px;
border-radius: 10px;
border: 4px solid #ec6102;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
}
.tp_dashang_erweima img{
width: 200px;
height: 200px;
display: block;
}
.tp_dashang_erweima h2{
color: #04c4fb;
font-size: 15px;
text-align: center;
line-height: 50px;
font-weight: bold;
}
.tp_dashang_tixing{
color: #a7a6a6;
font-size: 14px;
line-height: 25px;
text-align: center;
}
/*简单做了点响应式*/
@media only screen and (max-width: 1100px){
.tp_dashang_content{
width: 370px;
margin-left: -185px;
}
.tp_dashang_erweima div{
width: 165px;
height: 165px;
}
.tp_dashang_erweima img{
width: 150px;
height: 150px;
display: block;
}
.tp_dashang_tixing{
font-size: 12px;
}
}
</style>
<script>
var exceptional = document.getElementById('exceptional');
var mask = document.getElementById('mask');
var dashangCon = document.getElementById('dashangCon');
var ShutDown = document.getElementById('ShutDown');
exceptional.onclick=function(){
mask.style.display = "block";
dashangCon.style.display = "block";
}
mask.onclick=function(){
mask.style.display = "none";
dashangCon.style.display = "none";
}
ShutDown.onclick=function(){
mask.style.display = "none";
dashangCon.style.display = "none";
}
</script>
版权声明:本文内容来源于网络或网友投稿,如侵犯你的权益,请右侧小窗口联系我们删除。
THE END