中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • 如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能

如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能

發布時間:2021-08-27 11:36:26 來源:億速云 閱讀:163 作者:小新 欄目:開發技術

小編給大家分享一下如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

先看一下這個打賞的Icon長什么樣吧!

如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能

  點擊“打賞Icon”后會彈出一個二維碼界面,各位老板可以選擇使用是使用支付寶打賞還是微信打賞:

如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能

具體代碼如下:(時間倉促,并為將其擴展為插件) 

 HTML:

<!--打賞按鈕-->
<div >
<a title="打賞,支持一下" class="dashang" onclick="dashangToggle()" href="javascript:void(0)">
</a>
</div>

  打賞遮罩層HTML:

<div class="content">
<div class="hide_box"><!--遮罩--></div>
<div class="shang_box">
<a class="shang_close" href="javascript:void(0)" onclick="dashangToggle()" title="關閉">
<img src="/Content/dashangimg/close.jpg" alt="取消">
</a>
<div class="shang_tit">
<p>感謝您的支持,我會繼續努力的!</p>
</div>
<div class="shang_payimg">
<img src="/Content/dashangimg/alipayimg.jpg" alt="掃碼支持" title="掃一掃">
</div>
<div class="pay_explain">掃碼打賞,你說多少就多少</div>
<div class="shang_payselect">
<div class="pay_item checked" data-id="alipay">
<span class="radiobox"></span>
<span class="pay_logo">
<img src="/Content/dashangimg/alipay.jpg" alt="支付寶">
</span>
</div>
<div class="pay_item" data-id="weixinpay">
<span class="radiobox"></span>
<span class="pay_logo">
<img src="/Content/dashangimg/wechat.jpg" alt="微信">
</span>
</div>
</div>
<div class="shang_info">
<p>打開<span id="shang_pay_txt">支付寶</span>掃一掃,即可進行掃碼打賞哦</p>
</div>
</div>
</div>

  主要的JS:

//打賞
jQuery(".pay_item").click(function () {
jQuery(this).addClass('checked').siblings('.pay_item').removeClass('checked');
var dataid = jQuery(this).attr('data-id');
jQuery(".shang_payimg img").attr("src", "/Content/dashangimg/" + dataid + "img.jpg");
jQuery("#shang_pay_txt").text(dataid == "alipay" ? "支付寶" : "微信");
});
function dashangToggle() {
jQuery(".hide_box").fadeToggle();
jQuery(".shang_box").fadeToggle();
};

順帶提供CSS:

.hide_box {
z-index: 999;
filter: alpha(opacity=50);
background: #666;
opacity: 0.5;
-moz-opacity: 0.5;
left: 0;
top: 0;
height: 99%;
width: 100%;
position: fixed;
display: none;
}
.shang_box {
width: 540px;
height: 540px;
padding: 10px;
background-color: #fff;
border-radius: 10px;
position: fixed;
z-index: 1000;
left: 50%;
top: 50%;
margin-left: -280px;
margin-top: -280px;
border: 1px dotted #dedede;
display: none;
}
.shang_box img {
border: none;
border-width: 0;
}
.dashang {
display: block;
margin: 5px auto;
text-align: center;
transition: all 0.3s;
width:50px;
height:50px;
background: url(../dashangimg/dashang.png) no-repeat scroll 0% 0% transparent;
}
.dashang:hover {
background: url(../dashangimg/dashanghover.png) no-repeat scroll 0% 0% transparent;
}
.shang_close {
float: right;
display: inline-block;
}
.shang_logo {
display: block;
text-align: center;
margin: 20px auto;
}
.shang_tit {
width: 100%;
height: 75px;
text-align: center;
line-height: 66px;
color: #a3a3a3;
font-size: 16px;
background: url('../dashangimg/cy-reward-title-bg.jpg');
font-family: 'Microsoft YaHei';
margin-top: 7px;
margin-right: 2px;
}
.shang_tit p {
color: #a3a3a3;
text-align: center;
font-size: 16px;
}
.shang_payimg {
width: 150px;
height: 150px;
border: 6px solid #EA5F00;
margin: 0 auto;
border-radius: 3px;
}
.shang_payimg img {
display: block;
text-align: center;
width: 140px;
height: 140px;
}
.pay_explain {
text-align: center;
margin: 10px auto;
font-size: 12px;
color: #545454;
}
.radiobox {
width: 16px;
height: 16px;
background: url('../dashangimg/radio2.jpg');
display: block;
float: left;
margin-top: 5px;
margin-right: 14px;
}
.checked .radiobox {
background: url('../dashangimg/radio1.jpg');
}
.shang_payselect {
text-align: center;
margin: 0 auto;
margin-top: 40px;
cursor: pointer;
height: 60px;
width: 280px;
}
.shang_payselect .pay_item {
display: inline-block;
margin-right: 10px;
float: left;
}
.shang_info {
clear: both;
}
.shang_info p, .shang_info a {
color: #C3C3C3;
text-align: center;
font-size: 12px;
text-decoration: none;
line-height: 2em;
}

最后再提供幾個打賞圖標吧,喜歡的話就收藏起來吧:

如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能

以上是“如何利用ASP.NET MVC和Bootstrap快速搭建個人博客之文章打賞功能”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

正蓝旗| 太和县| 江门市| 桓台县| 五常市| 崇左市| 贵阳市| 松滋市| 山阴县| 城固县| 静宁县| 杨浦区| 元阳县| 怀来县| 大余县| 尼勒克县| 苏尼特左旗| 隆尧县| 邹平县| 资中县| 普定县| 太白县| 道真| 韩城市| 东山县| 定兴县| 宁安市| 澎湖县| 吉隆县| 湘阴县| 宜春市| 济阳县| 家居| 云阳县| 大余县| 开江县| 扶沟县| 沙湾县| 绵阳市| 方城县| 陈巴尔虎旗|