首页
每日早报
关于本站
统计
更多
友链
直播
投稿
高清壁纸
Search
1
网梭浏览器2.4.6 修改版本
416 阅读
2
网梭浏览器2.4.4 修改版本
309 阅读
3
自用域名出售
253 阅读
4
青龙面板-快手极速版5.4建议本地跑
237 阅读
5
吾爱破解APP(套娃)
223 阅读
应用分享
程序代码
游戏分享
美图欣赏
站内公告
优秀站点
登录
/
注册
Search
标签搜索
青龙脚本
优秀站点
建站经验
科学上网
网梭浏览器
小姐姐
SEO
api
青龙面板
SSL
去水印源码
青龙面板安装
影视源码
个人导航
卧龙影视
去水印api
小白博客
宝塔安装青龙面板
站长推送工具
百度站长推送
小白
累计撰写
117
篇文章
累计收到
238
条评论
首页
栏目
应用分享
程序代码
游戏分享
美图欣赏
站内公告
优秀站点
页面
每日早报
关于本站
统计
友链
直播
投稿
高清壁纸
搜索到
8
篇与
的结果
2022-05-14
免费SSL证书申请网址合集
简介分享一些免费的SSL证书应用网站,并提供来自Let's Encrypt或TrustAsia CA的免费SSL证书。SSLforfree免费申请 Let’s Encrypt 证书 可申请通配符 SSL 证书(即申请一个证书可用于所有该域名下所有子域名证书)https://www.sslforfree.comLookssl免费申请一年 Root CA 1 年期免费证书https://www.lookssl.comFreessl可免费申请 Let’s Encrypt 与 TrustAsia 免费 SSL 证书,还提供有 SSL 工具。https://freessl.cnFreessl 免费90天证书SSL,可以自动续费。https://freessl.org
2022年05月14日
7 阅读
0 评论
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-11
小白博客自用404页面
简介分享一款小白自用404页面,自带bgm。 演示 下载{cloud title="小白博客自用404页面" type="lz" url="https://wwn.lanzouf.com/iLNN90312s3i" password=""/}
2022年04月11日
60 阅读
0 评论
0 点赞
2022-04-03
Fotor懒设计绿化版
简介Fotor懒设计_在线设计神器_免费设计素材模板_平面设计作图软件,已经去除vip限制,具体自测好吧。图片下载{cloud title="Fotor懒设计" type="lz" url="https://wwn.lanzouf.com/i1dN502jzbxg" password=""/}
2022年04月03日
23 阅读
0 评论
0 点赞
2022-03-16
Linux系统宝塔面板如何快速修改密码和关闭安全入口
简介今天就来说说如何快速修改宝塔面板的密码和安全入口,学会修改也就学会了修改端口和其他设置。 教程指令其实很简单,首先使用SSH工具连接服务器,输入以下指令: bt 按照修改选项编号输入并确认根据提示修改即可,快速简单。关闭宝塔 Linux 面板的安全入口rm -f /www/server/panel/data/admin_path.pl查看面板账户信息/etc/init.d/bt default
2022年03月16日
26 阅读
0 评论
0 点赞
2022-03-03
和小白一起学习广告设计
简介 小白都会,你还怕不会? :@(喷血)创客贴专注图片模板在线设计,广告设计在线印刷.平台提供63类场景图片设计模板,一键生成,在线编辑。设计有名片、海报、ppt、邀请函、贺卡、宣传单、展架、公众号推文图片等社交媒体图片。{message type="info" content="你以为我ps?不不不不,你想多了,一键生成! "/}图片下载隐藏内容,请前往内页查看详情
2022年03月03日
48 阅读
1 评论
0 点赞
2022-03-03
分享小白博客自用的 访问问候弹窗源码
简介访问弹窗,根据用户的访问ip来告知大概位置,能告知ip地址,设备帧数 :@(高兴) (左下角),大概使用的浏览器,以及操作系统。图片代码<!-- 客户端信息 --> <div id="fps" style="z-index:5;position:fixed;bottom:3px;left:3px;color:#2196F3;font-size:10px;-webkit-pointer-events: none; -moz-pointer-events: none; -ms-pointer-events: none; -o-pointer-events: none;"></div> <script type="text/javascript" src="https://cdn.jsdelivr.net/gh/kaliisra/myblogstatic/kehuduan-js/fetch.min.js"></script> <script src="https://cdn.gmit.vip/layer/3.1.1/layer.js" type="text/javascript" charset="utf-8"></script> <script> /*网站打开提醒代码开始*/ $(function(){ if(/*getCookie('msg') !=*/ 1){ var t = document.createElement("a"); t.href = document.referrer; var msgTitle = t.hostname; var name = t.hostname.split(".")[1]; if("" !== document.referrer){ switch (name) { case 'bing': msgTitle = '必应搜索'; break; case 'baidu': msgTitle = '百度搜索'; break; case 'so': msgTitle = '360搜索'; break; case 'google': msgTitle = '谷歌搜索'; break; case 'sm': msgTitle = '神马搜索'; break; case 'sogou': msgTitle = '搜狗搜索'; break; default: msgTitle = t.hostname; }; }; var time = (new Date).getHours(); var msg = ''; 23 < time || time <= 5 ? msg = "你是夜猫子呀?这么晚还不睡觉,明天起的来嘛?": 5< time && time <= 7 ? msg = "早上好!一日之计在于晨,美好的一天就要开始了!": 7< time && time <= 11 ? msg = "上午好!工作顺利嘛,不要久坐,多起来走动走动哦!": 11< time && time <= 14 ? msg = "中午了,工作了一个上午,现在是午餐时间!": 14< time && time <= 17 ? msg = "午后很容易犯困呢,今天的运动目标完成了吗?": 17< time && time <= 19 ? msg = "傍晚了!窗外夕阳的景色很美丽呢,最美不过夕阳红~": 19< time && time <= 21 ? msg = "晚上好,今天过得怎么样?": 21< time && time <= 23 && (msg = "已经这么晚了呀,早点休息吧,晚安~"); $.ajax({ type:"get", url:"https://api.gmit.vip/Api/UserInfo/", async:true, success:function(data){ window.info = data; layer.msg("Hi~ 来自"+ data.data.location + '~<br/>通过 '+msgTitle+' 进来的朋友!<br/>使用 '+ data.data.os +"<br/>"+ data.data.browser +' 访问本站!' + '<br/>' + msg); 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){ var settings = { timeout: 5000, logError: true }; $('#fps').html('<span style="float:left;">'+fps+'FPS</span><br/><span style="float:left">'+window.info.data.os+'</span><br/><span style="float:left;margin-top:1px;">'+window.info.data.browser+'</span><br/><span style="float:left;margin-top:1px;">'+window.info.data.location+'</span><br/><span style="float:left;margin-top:1px;"></span>'); }; step(); })(); } }); }; }); </script> <!-- 客户端信息 -->
2022年03月03日
47 阅读
0 评论
0 点赞
2022-02-28
免费的ssl申请网站FreeSSL.cn
简介FreeSSL.cn是一个免费提供证书申请、证书管理和证书到期提醒服务的网站ssl是什么? {message type="success" content="duang"/}常见问题为什么要使用我们免费申请证书的服务?100% 永久免费再也不用付费申请 SSL 证书,非常感谢 Let's Encrypt 与 TrustAsia 为我们提供免费SSL证书。证书到期提醒服务我们免费提供证书到期提醒服务,在你的HTTPS证书到期前及时提醒你更换证书。私钥安全有保障我们默认采用浏览器本地生成私钥的方式,保证私钥不在网络中传播,确保您HTTPS证书的安全。证书云托管尽管我们提供证书与私钥的云托管服务,但我们仍然不推荐您使用该功能。建议您使用离线加密存储的管理软件 KeyManager, 当然我们也采用二步验证,私钥强加密等方式来保证您证书私钥的安全。您可到控制台面板进行私钥上传。申请地址{abtn icon="" color="#35ca93" href="https://freessl.cn/" radius="17.5px" content="点我免费申请ssl"/}
2022年02月28日
42 阅读
0 评论
0 点赞