ASP.NET MVC+Bootstrap个人博客之文章打赏(六)
liuian 2024-12-30 05:16 56 浏览
看到新浪微博、百度百家等等平台上都带有文章“打赏”功能,觉得很新鲜,于是也想在自己的博客中加入“打赏”功能。
当然,加入打赏功能并非是真的想要让别人打赏。因为只有那些真正能引起共鸣,发人深思,让人受益匪浅的文章才值得打赏,值得点赞。
而我的博客站仅仅是用作记录笔记,当做自己的知识库(如果能不经意间帮助别人那是再好不过了)。
加入打赏功能纯粹是“觉得好玩”,就是这么简单,Just have a fun!(博主喜欢折腾,看见一个酷炫的功能就想去实现它)
先看一下这个打赏的Icon长什么样吧! 去站点试试打赏?=>www.zynblog.com
点击“打赏Icon”后会弹出一个二维码界面,各位老板可以选择使用是使用支付宝打赏还是微信打赏:
具体代码如下:(时间仓促,并为将其扩展为插件)
HTML:
<!--打赏按钮-->
<div style="margin-bottom:20px;">
<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:
1 .hide_box {
2 z-index: 999;
3 filter: alpha(opacity=50);
4 background: #666;
5 opacity: 0.5;
6 -moz-opacity: 0.5;
7 left: 0;
8 top: 0;
9 height: 99%;
10 width: 100%;
11 position: fixed;
12 display: none;
13 }
14
15 .shang_box {
16 width: 540px;
17 height: 540px;
18 padding: 10px;
19 background-color: #fff;
20 border-radius: 10px;
21 position: fixed;
22 z-index: 1000;
23 left: 50%;
24 top: 50%;
25 margin-left: -280px;
26 margin-top: -280px;
27 border: 1px dotted #dedede;
28 display: none;
29 }
30
31 .shang_box img {
32 border: none;
33 border-width: 0;
34 }
35
36 .dashang {
37 display: block;
38 margin: 5px auto;
39 text-align: center;
40 transition: all 0.3s;
41 width:50px;
42 height:50px;
43 background: url(../dashangimg/dashang.png) no-repeat scroll 0% 0% transparent;
44 }
45
46 .dashang:hover {
47 background: url(../dashangimg/dashanghover.png) no-repeat scroll 0% 0% transparent;
48 }
49
50 .shang_close {
51 float: right;
52 display: inline-block;
53 }
54
55 .shang_logo {
56 display: block;
57 text-align: center;
58 margin: 20px auto;
59 }
60
61 .shang_tit {
62 width: 100%;
63 height: 75px;
64 text-align: center;
65 line-height: 66px;
66 color: #a3a3a3;
67 font-size: 16px;
68 background: url('../dashangimg/cy-reward-title-bg.jpg');
69 font-family: 'Microsoft YaHei';
70 margin-top: 7px;
71 margin-right: 2px;
72 }
73
74 .shang_tit p {
75 color: #a3a3a3;
76 text-align: center;
77 font-size: 16px;
78 }
79
80 .shang_payimg {
81 width: 150px;
82 height: 150px;
83 border: 6px solid #EA5F00;
84 margin: 0 auto;
85 border-radius: 3px;
86 }
87
88 .shang_payimg img {
89 display: block;
90 text-align: center;
91 width: 140px;
92 height: 140px;
93 }
94
95 .pay_explain {
96 text-align: center;
97 margin: 10px auto;
98 font-size: 12px;
99 color: #545454;
100 }
101
102 .radiobox {
103 width: 16px;
104 height: 16px;
105 background: url('../dashangimg/radio2.jpg');
106 display: block;
107 float: left;
108 margin-top: 5px;
109 margin-right: 14px;
110 }
111
112 .checked .radiobox {
113 background: url('../dashangimg/radio1.jpg');
114 }
115
116 .shang_payselect {
117 text-align: center;
118 margin: 0 auto;
119 margin-top: 40px;
120 cursor: pointer;
121 height: 60px;
122 width: 280px;
123 }
124
125 .shang_payselect .pay_item {
126 display: inline-block;
127 margin-right: 10px;
128 float: left;
129 }
130
131 .shang_info {
132 clear: both;
133 }
134
135 .shang_info p, .shang_info a {
136 color: #C3C3C3;
137 text-align: center;
138 font-size: 12px;
139 text-decoration: none;
140 line-height: 2em;
141 }打赏样式
相关推荐
- realtek网卡驱动win7(realtek网卡驱动官网)
-
适配器RealtekPCIeFEFamilyCont设备管理器中网卡驱动是黄色叹号:此类故障是驱动异常或者安装的驱动不兼容。解决方法:1、选择桌面上的计算机,鼠标右键选择管理;2、点设备管理器,展开网...
- win10主题怎么下载(win10主题包怎么安装)
-
首先在win10桌面空白处,鼠标右键菜单中选择“个性化”选项 2、打开个性化设置窗口后,在左侧列表中选择“主题”选项,然后在右侧窗口中选择“主题设置”,当前为系统默认主题,我们简称为“蓝色主题”。 ...
- w9系统和w7哪个好
-
老实说,还是W10更好点。。。你咨询现在是使用还是使用win10好?怎么说呢,你选择使用win7或选择使用win10,这个主要还是需要看你使用的电脑或笔记本电脑是哪年购买的产品,能不能带动或这能不能...
- 微软维修点(微软售后服务维修点查询)
-
对于xbox国内售后维修点的查询,可以在微软官方网站或者xbox官方App上进行查询。1,因为微软在中国地区设有多个授权的售后维修点,这些维修点可以提供专业的维修和售后服务。2,可以通过输入相关信息,...
- win10设置动态壁纸桌面(windows10设置动态壁纸)
-
windows10设动态壁纸的方法如下1、首先回到桌面,点击开始按钮。2、然后开始菜单点击设置。3、在弹出来的界面设置中点击个性化。4、接着在弹出来的个性化界面点击背景下面的箭头。5、然后背景点击幻灯...
- sql和python哪个难(sql语句聚合函数)
-
你是想做数据分析对吧?建议啊,MySQL能应付很多统计问题了再去学python,python语法当然了必须先掌握,这个很简单,然后就是python有两个跟数据分析密切相关的包,如果你想做数据分析,请把...
- win7该内存不能为read
-
1、同时按住win+R打开运行窗口,输入【cmd】,点击确定。2、进入到命令提升符页面时,输入【for%1in(%windir%\system32\*.dll)doregsvr32.exe...
- 下载中心软件下载(下载中心软件下载什么)
-
下载软件比较全的app推荐安卓市场。安卓市场是一款安卓手机软件下载的资源平台,这里有最新最全的软件安装,帮助您在海量资源中精准搜索、高速下载、轻松管理,是安全而快速的的中文安卓应用商店,让你每天都有新...
- win10如何升级版本(win10升级版本后还要激活吗)
-
一、升级windows10版本后再安装PR20191.1、将你电脑目前的操作系统windows10版本成功升级到1703或更高的版本win10pr。1.2、成功升级windows1...
- 网桥如何接收无线wifi(网桥无线网络设置)
-
无线网桥即通过新的路由器无线连接原来的路由器,然后发射WIFI信号,再用手机等设备连接新的无线路由器,可以实现WIFI信号放大的作用。具体设置方法如下:1、打开电脑,并进入路由器管理页面;2、进入管理...
- 宏碁电脑重装系统教程(宏碁电脑重装系统步骤)
-
可以用系统u盘、光盘、硬盘(如老系统还可启动)等。以u盘为例:1、将制作好的系统u盘(方法略)插入电脑usb。2、电脑Bios中设置从u盘启动,并重启电脑。3、进入系统u盘pe安装界面,选择全新安装,...
- pc端模拟器(PC端模拟器推荐)
-
对于目前的Windows平台,使用/测试过的安卓模拟器,给你推荐几款比较好的模拟器,让你更好更安全在电脑上玩手游:①、【逍遥安卓】(推荐)适合人群:普通大众及游戏应用爱好者,国内唯一款支持安卓5.0系...
- 一周热门
- 最近发表
- 标签列表
-
- python判断字典是否为空 (50)
- crontab每周一执行 (48)
- aes和des区别 (43)
- bash脚本和shell脚本的区别 (35)
- canvas库 (33)
- dataframe筛选满足条件的行 (35)
- gitlab日志 (33)
- lua xpcall (36)
- blob转json (33)
- python判断是否在列表中 (34)
- python html转pdf (36)
- 安装指定版本npm (37)
- idea搜索jar包内容 (33)
- css鼠标悬停出现隐藏的文字 (34)
- linux nacos启动命令 (33)
- gitlab 日志 (36)
- adb pull (37)
- python判断元素在不在列表里 (34)
- python 字典删除元素 (34)
- vscode切换git分支 (35)
- python bytes转16进制 (35)
- grep前后几行 (34)
- hashmap转list (35)
- c++ 字符串查找 (35)
- mysql刷新权限 (34)
