首页
友链
留言
关于
足迹
朋友圈
Search
1
Linux服务器测速方法
119 阅读
2
Freenom域名自动续期bot
117 阅读
3
给Typecho的Joe主题添加在线人数统计
108 阅读
4
Joe修改透明、主题色等教程
96 阅读
5
免费撸.bf域名🌽
93 阅读
网站代码
网站源码
人情世故
软件分享
网址大全
电脑系统
生活趣事
登录
/
注册
Search
标签搜索
美化
源码
代码
SSH
Linux
IP
API
文章
系统
域名
Windows
命令
菜鸟
他
一天前
来过
累计撰写
33
篇文章
累计收到
62
条评论
首页
栏目
网站代码
网站源码
人情世故
软件分享
网址大全
电脑系统
生活趣事
页面
友链
留言
关于
足迹
朋友圈
登录
丨
注册
搜索到
12
篇与
的结果
2022-08-11
添加彩色阅读进度条
↑就是这样的↑ 将下方代码放到头部HTML代码内<div id="percentageCounter"></div>将下方代码放到哪都可以 其实我也不知道行不行 绿红色的<!-- 阅读进度条开始 --> <style type="text/css"> #percentageCounter{position:fixed; left:0; top:0; height:3px; z-index:99999; background-image: linear-gradient(to right, #339933,#FF6666);border-radius:5px;} </style> <script type="text/javascript"> $(window).scroll(function() { var a = $(window).scrollTop(), c = $(document).height(), b = $(window).height(); scrollPercent = a / (c - b) * 100; scrollPercent = scrollPercent.toFixed(1); $("#percentageCounter").css({ width: scrollPercent + "%" }); }).trigger("scroll"); </script> <!-- 阅读进度条结束 -->白蓝色的<!-- 阅读进度条开始 --> <style> #percentageCounter{position:fixed; left:0; top:0; height:3px; z-index:99999; background-image: linear-gradient(to right, #E8EAF6,#C5CAE9,#9FA8DA,#7986CB,#5C6BC0,#3F51B5,#3949AB,#303F9F,#283593,#1A237E);border-radius:5px;} </style> <script type="text/javascript"> $(window).scroll(function() { var a = $(window).scrollTop(), c = $(document).height(), b = $(window).height(); scrollPercent = a / (c - b) * 100; scrollPercent = scrollPercent.toFixed(1); $("#percentageCounter").css({ width: scrollPercent + "%" }); }).trigger("scroll"); </script> <!-- 阅读进度条结束 -->
2022年08月11日
58 阅读
0 评论
0 点赞
2022-08-11
顶部跑马灯特效
使用说明 放在头部head里即可。 图片效果 代码部分<!– 顶部跑马灯特效 –> <style> #top-grrk{ background:url(https://external-30160.picsz.qpic.cn/e94ff0137dfb6cc51925d4ccf61d2541); height:2px; position:fixed; width:100%; Z-index:10000; } <yle> <div id=”top-grrk”></div> <!– 顶部跑马灯特效 –>
2022年08月11日
47 阅读
0 评论
0 点赞
1
2