首页
友链
留言
关于
足迹
朋友圈
Search
1
Linux服务器测速方法
118 阅读
2
Freenom域名自动续期bot
117 阅读
3
给Typecho的Joe主题添加在线人数统计
107 阅读
4
Joe修改透明、主题色等教程
95 阅读
5
免费撸.bf域名🌽
92 阅读
网站代码
网站源码
人情世故
软件分享
网址大全
电脑系统
生活趣事
登录
/
注册
Search
标签搜索
美化
源码
代码
SSH
Linux
IP
API
文章
系统
域名
Windows
命令
菜鸟
他
11月10日
来过
累计撰写
33
篇文章
累计收到
60
条评论
首页
栏目
网站代码
网站源码
人情世故
软件分享
网址大全
电脑系统
生活趣事
页面
友链
留言
关于
足迹
朋友圈
登录
丨
注册
搜索到
16
篇与
的结果
2022-08-14
Joe修改透明、主题色等教程
{message type="success" content="Joe主题在4.7.6版本之前都可以在后台自定义各种色彩,在5.0.0版本后,该设置功能已经去除,去除的原因是为了避免阻塞的问题。在新版本中,所有功能依旧可以自定义!"/}自定义css选项打开后台,找到外观设置,自定义css选项。输入代码然后输入框内填入以下内容:body { --theme: #ff6800; --background: rgba(255,255,255,0.85) }--theme 用于主题色--background 用于修改背景,例如修改半透明等可以自由修改其他样式。
2022年08月14日
95 阅读
0 评论
0 点赞
2022-08-13
Typecho-评论显示IP地址代码
使用教程先上传插件到usr/plugins去后台启用插件然后再去下面的文件中添加下面的那一句代码JOE主题在usr/themes/joe/public/comment.php第123行加入即可 IP地址:<?php $comments->location(); ?> 插件下载
2022年08月13日
55 阅读
4 评论
0 点赞
2022-08-11
快手一键取关JavaScript代码
好久没登快手,最近登录了一下发现关注了很多莫名其妙的人,于是就找了个一键取关的脚本setInterval(function() { var a = document.getElementsByClassName("isfollow") for (var b = 0; b < a['length']; b++) { document.getElementsByClassName("isfollow")[b]['click'](); } }, 800) 打开网页版快手,进入这个页面,控制台执行上面代码即可自动取关。
2022年08月11日
12 阅读
0 评论
1 点赞
2022-08-11
给你的网站添加FPS
代码来了<!-- 显示FPS开始 --> <script> //if ((!navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) {//匹配手机,把注释去掉就只显示PC端 $('body').before('<div id="fps" style="color:#FFB6C1;z-index:10000;position:fixed;top:3px;left:3px;font-weight:bold;"></div>'); var showFPS = (function() { var requestAnimationFrame = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame || function(callback) { window.setTimeout(callback, 1000 / 60); } ; var e, pe, pid, fps, last, offset, step, appendFps; fps = 0; last = Date.now(); step = function() { offset = Date.now() - last; fps += 1; if (offset >= 1000) { last += offset; appendFps(fps); fps = 0; } requestAnimationFrame(step); } ; appendFps = function(fps) { $('#fps').html(fps + 'FPS'); } ; step(); } )(); //}//手机和电脑开启 </script> <!-- 显示FPS结束 -->
2022年08月11日
40 阅读
0 评论
0 点赞
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日
57 阅读
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日
45 阅读
0 评论
0 点赞
1
2