首页
每日早报
关于本站
统计
更多
友链
直播
投稿
高清壁纸
Search
1
网梭浏览器2.4.6 修改版本
417 阅读
2
网梭浏览器2.4.4 修改版本
309 阅读
3
自用域名出售
253 阅读
4
青龙面板-快手极速版5.4建议本地跑
237 阅读
5
吾爱破解APP(套娃)
223 阅读
应用分享
程序代码
游戏分享
美图欣赏
站内公告
优秀站点
登录
/
注册
Search
标签搜索
青龙脚本
优秀站点
建站经验
科学上网
网梭浏览器
小姐姐
SEO
api
青龙面板
SSL
去水印源码
青龙面板安装
影视源码
个人导航
卧龙影视
去水印api
小白博客
宝塔安装青龙面板
站长推送工具
百度站长推送
小白
累计撰写
117
篇文章
累计收到
238
条评论
首页
栏目
应用分享
程序代码
游戏分享
美图欣赏
站内公告
优秀站点
页面
每日早报
关于本站
统计
友链
直播
投稿
高清壁纸
搜索到
48
篇与
的结果
2022-05-10
分享下小白自用的羊毛脚本-青龙面板
{message type="success" content="评论即可观看脚本"/}隐藏内容,请前往内页查看详情
2022年05月10日
78 阅读
17 评论
2 点赞
2022-05-08
青龙面板-快手极速版3w/6w版 建议本地跑
简介快手极速版3w/6w版,理论可以用很久时间,建议本地跑,服务器应该会失效,所起强烈建议本地跑拉库快手极速版3wql raw http://www.r7.gs/ksjsb.js快手极速版6wql raw http://www.r7.gs/ksjsb6w.js定时10 7-20/1 * * * 本地跑隐藏内容,请前往内页查看详情效果
2022年05月08日
102 阅读
15 评论
0 点赞
2022-05-08
去水印小程序
简介全能去水印小程序,能够自定义接口,界面也比较简介,我没搭建,只测试了下。教程1.使用教程和搭建教程就不教了,不会的孩子还是自行百度。2.解析接口 api 更换,这是采用远程接口 如 https://www.yxyp.cc/sy.php 程序中隐藏内容,请前往内页查看详情4.更改流量组广告id程序中index/index.js 78 行图片这是我更换自定义接口的解析测试图下载{cloud title="去水印小程序源码自带接口.zip" type="lz" url="https://wwn.lanzouf.com/iVBtP04h5emd" password=""/}
2022年05月08日
17 阅读
0 评论
0 点赞
2022-05-04
青龙面板-快手极速版5.4建议本地跑
简介快手极速版5.4更新,理论可以用很久时间,建议本地跑,服务器没代理难跑。拉库ql raw http://www.r7.gs/ksjsb.js定时10 7-20/1 * * * 本地跑隐藏内容,请前往内页查看详情效果
2022年05月04日
237 阅读
15 评论
0 点赞
2022-04-15
搞定设计 || 创客贴 (屏蔽水印和会员小提示,下载PDF格式!!)
简介油猴脚本 创客贴 去水印下载PDF格式,简单的设计不就来了吗! 在线安装图片代码// ==UserScript== // @name 搞定设计 || 创客贴 (屏蔽水印和会员小提示,下载PDF格式!!) // @version 0.24 // @icon http://dynamic-image.bear20.com/640x267/uploadImages/2020/289/34/9DTKT3Y2XR06.jpg // @description 出现不能用为正常现象,佛系更新。搞定设计、创客贴 ,屏蔽水印,会员小提示,下载PDF格式!!(创客贴还不能保存PDF) // @match *://*.gaoding.com/design?id=* // @match *://*.gaoding.com/odyssey/design?* // @match *://*.chuangkit.com/design* // @require http://cdn.staticfile.org/jquery/1.8.3/jquery.min.js // @grant none // @namespace http://tampermonkey.net/ // ==/UserScript== (function () { (function ($) { "use strict"; // A nice closure for our definitions function getjQueryObject(string) { // Make string a vaild jQuery thing var jqObj = $(""); try { jqObj = $(string) .clone(); } catch (e) { jqObj = $("<span />") .html(string); } return jqObj; } function printFrame(frameWindow, content, options) { // Print the selected window/iframe var def = $.Deferred(); try { frameWindow = frameWindow.contentWindow || frameWindow.contentDocument || frameWindow; var wdoc = frameWindow.document || frameWindow.contentDocument || frameWindow; if(options.doctype) { wdoc.write(options.doctype); } wdoc.write(content); wdoc.close(); var printed = false; var callPrint = function () { if(printed) { return; } // Fix for IE : Allow it to render the iframe frameWindow.focus(); try { // Fix for IE11 - printng the whole page instead of the iframe content if (!frameWindow.document.execCommand('print', false, null)) { // document.execCommand returns false if it failed -http://stackoverflow.com/a/21336448/937891 frameWindow.print(); } // focus body as it is losing focus in iPad and content not getting printed $('body').focus(); } catch (e) { frameWindow.print(); } frameWindow.close(); printed = true; def.resolve(); } // Print once the frame window loads - seems to work for the new-window option but unreliable for the iframe $(frameWindow).on("load", callPrint); // Fallback to printing directly if the frame doesn't fire the load event for whatever reason setTimeout(callPrint, options.timeout); } catch (err) { def.reject(err); } return def; } function printContentInIFrame(content, options) { var $iframe = $(options.iframe + ""); var iframeCount = $iframe.length; if (iframeCount === 0) { // Create a new iFrame if none is given $iframe = $('<iframe height="0" width="0" border="0" wmode="Opaque"/>') .prependTo('body') .css({ "position": "absolute", "top": -999, "left": -999 }); } var frameWindow = $iframe.get(0); return printFrame(frameWindow, content, options) .done(function () { // Success setTimeout(function () { // Wait for IE if (iframeCount === 0) { // Destroy the iframe if created here $iframe.remove(); } }, 1000); }) .fail(function (err) { // Use the pop-up method if iframe fails for some reason console.error("Failed to print from iframe", err); printContentInNewWindow(content, options); }) .always(function () { try { options.deferred.resolve(); } catch (err) { console.warn('Error notifying deferred', err); } }); } function printContentInNewWindow(content, options) { // Open a new window and print selected content var frameWindow = window.open(); return printFrame(frameWindow, content, options) .always(function () { try { options.deferred.resolve(); } catch (err) { console.warn('Error notifying deferred', err); } }); } function isNode(o) { /* http://stackoverflow.com/a/384380/937891 */ return !!(typeof Node === "object" ? o instanceof Node : o && typeof o === "object" && typeof o.nodeType === "number" && typeof o.nodeName === "string"); } $.print = $.fn.print = function () { // Print a given set of elements var options, $this, self = this; // console.log("Printing", this, arguments); if (self instanceof $) { // Get the node if it is a jQuery object self = self.get(0); } if (isNode(self)) { // If `this` is a HTML element, i.e. for // $(selector).print() $this = $(self); if (arguments.length > 0) { options = arguments[0]; } } else { if (arguments.length > 0) { // $.print(selector,options) $this = $(arguments[0]); if (isNode($this[0])) { if (arguments.length > 1) { options = arguments[1]; } } else { // $.print(options) options = arguments[0]; $this = $("html"); } } else { // $.print() $this = $("html"); } } // Default options var defaults = { globalStyles: true, mediaPrint: false, stylesheet: null, noPrintSelector: ".no-print", iframe: true, append: null, prepend: null, manuallyCopyFormValues: true, deferred: $.Deferred(), timeout: 750, title: null, doctype: '<!doctype html>' }; // Merge with user-options options = $.extend({}, defaults, (options || {})); var $styles = $(""); if (options.globalStyles) { // Apply the stlyes from the current sheet to the printed page $styles = $("style, link, meta, base, title"); } else if (options.mediaPrint) { // Apply the media-print stylesheet $styles = $("link[media=print]"); } if (options.stylesheet) { // Add a custom stylesheet if given $styles = $.merge($styles, $('<link rel="stylesheet" href="' + options.stylesheet + '">')); } // Create a copy of the element to print var copy = $this.clone(); // Wrap it in a span to get the HTML markup string copy = $("<span/>") .append(copy); // Remove unwanted elements copy.find(options.noPrintSelector) .remove(); // Add in the styles copy.append($styles.clone()); // Update title if (options.title) { var title = $("title", copy); if (title.length === 0) { title = $("<title />"); copy.append(title); } title.text(options.title); } // Appedned content copy.append(getjQueryObject(options.append)); // Prepended content copy.prepend(getjQueryObject(options.prepend)); if (options.manuallyCopyFormValues) { // Manually copy form values into the HTML for printing user-modified input fields // http://stackoverflow.com/a/26707753 copy.find("input") .each(function () { var $field = $(this); if ($field.is("[type='radio']") || $field.is("[type='checkbox']")) { if ($field.prop("checked")) { $field.attr("checked", "checked"); } } else { $field.attr("value", $field.val()); } }); copy.find("select").each(function () { var $field = $(this); $field.find(":selected").attr("selected", "selected"); }); copy.find("textarea").each(function () { // Fix for https://github.com/DoersGuild/jQuery.print/issues/18#issuecomment-96451589 var $field = $(this); $field.text($field.val()); }); } // Get the HTML markup string var content = copy.html(); // Notify with generated markup & cloned elements - useful for logging, etc try { options.deferred.notify('generated_markup', content, copy); } catch (err) { console.warn('Error notifying deferred', err); } // Destroy the copy copy.remove(); if (options.iframe) { // Use an iframe for printing try { printContentInIFrame(content, options); } catch (e) { // Use the pop-up method if iframe fails for some reason console.error("Failed to print from iframe", e.stack, e.message); printContentInNewWindow(content, options); } } else { // Use a new window for printing printContentInNewWindow(content, options); } return this; }; })(jQuery); $(window).on('load', function () { var windowUrl = window.location.href; var GdurlReg = /gaoding.com/; var CkturlReg = /chuangkit.com/; var GddiyCss = ` .editor-watermark, .editor-remove-watermark, .remove-watermark, .icon-vip-diamond, .gdd-material-card__vip, .g-popover__container:nth-child(2), #svePdf { display:none;} .eui-buttons-bar--dropdown > button:nth-child(1), .eui-buttons-bar--dropdown > button:nth-child(2) {pointer-events:none;} .eui-buttons-bar--dropdown{cursor: pointer;} ` var CktdiyCss = ` .templateWaterMark, .remove-cktTemplate-watermark, #renderer > div:nth-child(5) > div, #renderer > div:nth-child(2) > div > div:nth-child(2) > div, #renderer > div:nth-child(6) > div > div:nth-child(2) > div, #svePdf { display:none;} .design-header-download-span-newDown, .design-header-download-left-download {pointer-events:none;} ` function addStyle(name) { $(document).ready(function () { var style = document.createElement('style'); style.innerHTML = name; $('body').append(style); }); } function yes(contentID,DownloadBut) { var divHtml = '<button type="button" id="svePdf"></button>' setTimeout(function () { $(DownloadBut).append(divHtml) $(DownloadBut).on('click', function () { alert('艺术字体会出现问题!!!--1⃣️打印机选择存储为PDF----2⃣️边距离无-----3⃣️选上背景图形') var diyPrtCss = `@media print { @page { size: `+ $(contentID).width() + `px ` + $(contentID).height() + `px; margin: 0; } body { margin: 0; } });` var prtStyle = document.createElement('style'); prtStyle.innerHTML = diyPrtCss; $('body').append(prtStyle); $(contentID).print({ globalStyles: true,//是否包含父文档的样式,默认为true mediaPrint: false,//是否包含media='print'的链接标签。会被globalStyles选项覆盖,默认为false stylesheet: null,//外部样式表的URL地址,默认为null noPrintSelector: ".no-print",//不想打印的元素的jQuery选择器,默认为".no-print" iframe: true,//是否使用一个iframe来替代打印表单的弹出窗口,true为在本页面进行打印,false就是说新开一个页面打印,默认为true append: null,//将内容添加到打印内容的后面 prepend: null,//将内容添加到打印内容的前面,可以用来作为要打印内容 deferred: $.Deferred()//回调函数 }); }) }, 2000) } if (GdurlReg.test(windowUrl)) { addStyle(GddiyCss) yes('.editor-canvas','.editor-right-actions > .eui-buttons-bar--dropdown') } else if (CkturlReg.test(windowUrl)) { addStyle(CktdiyCss) yes('#page','.design-header-download-newDown') } }) })()
2022年04月15日
41 阅读
0 评论
0 点赞
2022-04-14
小白个人站点引导页
简介个人站点引导页面,比较简介,小白自己都在用 演示 下载{cloud title="个人站点引导页" type="lz" url="https://wwn.lanzouf.com/iWzmF036u1wd" password=""/}
2022年04月14日
36 阅读
0 评论
0 点赞
2022-04-13
个人主页仿QQ资料单页HTML引导页
简介一款个人主页仿QQ资料单页HTML引导页,操作简单,还挺好看的,喜欢的拿走。下载{cloud title="好看的个人仿QQ单页HTML" type="lz" url="https://wwn.lanzouf.com/iO0wI0350c8j" password=""/}
2022年04月13日
36 阅读
0 评论
0 点赞
2022-04-11
小白博客自用404页面
简介分享一款小白自用404页面,自带bgm。 演示 下载{cloud title="小白博客自用404页面" type="lz" url="https://wwn.lanzouf.com/iLNN90312s3i" password=""/}
2022年04月11日
60 阅读
0 评论
0 点赞
2022-04-10
Linux服务器测速脚本
简介Linux服务器测速脚本,常用的系统镜像就是windows和Linux系统,接下来分享下服务器性能,带宽,读写速度的测试脚本,来测试一下服务器各种性能数据。{mtitle title="1、bench.sh脚本"/}wget -qO- bench.sh | bash这个脚本工具可以检测当前服务器的基本信息,以及简单的IO读写性能和下载上传测速。{mtitle title="2、superbench.sh脚本"/}wget https://raw.githubusercontent.com/oooldking/script/master/superbench.sh chmod +x superbench.sh ./superbench.sh这个脚本工具和上面的有些相似,可以测试服务器的配置、IO和上传速率。{mtitle title="3、zbench.sh脚本"/}wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/ZBench/master/ZBench-CN.sh && bash ZBench-CN.sh这个脚本工具测试比较多一些,包括PING速度都有。
2022年04月10日
32 阅读
0 评论
0 点赞
2022-04-02
小范信箱留言板源码
简介小范信箱-留言板源码-php网站源码全开源版 进去以后,把fanallsql.sql导入数据库就可以了。图片下载{cloud title="小范信箱" type="lz" url="https://wwn.lanzouf.com/ibWMw02hqcxg" password=""/}
2022年04月02日
28 阅读
0 评论
2 点赞
1
2
...
5