首页
留言板
统计
Search
1
阿里云国际OSS使用CloudFlare免流量
2,339 阅读
2
PP.UA免费域名注册
2,192 阅读
3
Adobe Photoshop CS2经典版 中文原版
2,178 阅读
4
7-Zip中文美化版
2,039 阅读
5
获取免费的 Microsoft 365 E5 开发人员订阅
1,957 阅读
软件分享
网络资源
网络代码
生活情感
免费主机
Search
标签搜索
工具软件
代码
Android
教程
Emlog
办公软件
图形图像
免费空间
Web
情感
PHP
视频
系统工具
Windows
上传下载
建站
PDF
网盘
Typecho
Office
ZJ
累计撰写
811
篇文章
累计收到
105
条评论
首页
栏目
软件分享
网络资源
网络代码
生活情感
免费主机
页面
留言板
统计
搜索到
811
篇与
的结果
2020-11-17
Web渗透测试工程师:入门知识
通过对本课程的学习,学者可以胜任各大公司安全渗透测试工程师的位置;开发一些实用的安全小工具并开源,体现个人实力;建立自己的安全体系,对公司安全有自己的一些认识和见解。下载地址 百度网盘 天翼云盘
2020年11月17日
172 阅读
0 评论
0 点赞
2020-11-17
乌仁瑜伽:一学就会的腿部塑形课
腿型矫正系列课,有效改善假胯宽,X型腿,O型腿,XO型腿,认识自己的骨骼,教你平日站立走路正确姿势,让你的腿变直变长!下载地址 百度网盘 天翼云盘
2020年11月17日
173 阅读
0 评论
0 点赞
2020-11-17
极致相机 Camera FV-5 v5.2.3.0 解锁付费版
Camera FV-5(极致相机)终极专业相机,安卓最强单反相机应用。专业级别拍照拍摄,功能强大,所有的拍摄参数都可以调整,支持类似单反取景器的显示效果!它为您带来专业单反级的摄影体验,对于摄影爱好者和专业摄影师来说,这款相机应用都可以为您捕捉到最好的RAW影像,方便后期处理,效果令人惊叹。Camera FV-5 优势就是提供了很多同类相机应用不具备的单反级拍照选项(具体能否使用取决于硬件是否支持)。例如调整白平衡、ISO(感光度)、曝光补偿、测光模式、闪光灯模式、构图网格等,充分榨干手机摄像头的价值。另外如果你手头有三星的 Galaxy Camera 的话,Camera FV-5 几乎就是必装的第三方相机应用,这是目前对 Galaxy Camera 支持最为友好的一款,已经能完美支持它的各项特性。Camera FV现已提供简体中文。by Balatan, GhostRider解锁内购验证,免费使用完整功能No LP or Google Play Modded needed.by Dave(近年已停更)解锁验证,嵌入式汉化、精简语言、对齐优化。by iKira (近年已停更)原创中文翻译提交、解锁验证、精简语言,对齐优化。下载地址 蓝奏网盘
2020年11月17日
202 阅读
0 评论
0 点赞
2020-11-16
85个实用好学的幽默技巧
幽默是一种难得的智慧,是一种调节生活的艺术,是智慧的表达,是交流的润滑油,是人生的放松剂。懂得幽默的人很少被烦恼困扰,更能化解矛盾、消除尴尬,给身边人带来无尽的欢乐。本书从9个方面,向读者讲述85个实用幽默技巧,以便能让读者信手拈来,迅速使用到生活中。下载地址 蓝奏网盘
2020年11月16日
196 阅读
0 评论
0 点赞
2020-11-16
一段JS实现变色文字效果
代码如下:<!-- js实现变色文字 --> <div id="blink"> <strong> <div align="left" style="text-align:center;"> 变色文字效果 </div> </strong><strong> <script language="javascript"> function changeColor(){ var color="#f00|#0f0|#00f|#880|#808|#088|yellow|green|blue|gray"; color=color.split("|"); document.getElementById("blink").style.color=color[parseInt(Math.random() * color.length)]; } setInterval("changeColor()",200); </script> </strong> </div>
2020年11月16日
246 阅读
0 评论
0 点赞
2020-11-16
鼠标特效,增加“富强,民主,文明,和谐”
点击鼠标特效,随机闪现 "富强", "民主", "文明", "和谐", "自由", "平等", "公正" ,"法治", "爱国", "敬业", "诚信", "友善"。代码如下,加入到网站公共底部或顶部即可实现全站的点击特效,这个特效网上也有许多教程。其实就是一个JS,代码如下。把JS放在网站中就可以使用了。<script type="text/javascript"> /* 鼠标特效 */ var a_idx = 0; jQuery(document).ready(function($) { $("body").click(function(e) { var a = new Array("富强", "民主", "文明", "和谐", "自由", "平等", "公正" ,"法治", "爱国", "敬业", "诚信", "友善"); var $i = $("<span/>").text(a[a_idx]); a_idx = (a_idx + 1) % a.length; var x = e.pageX, y = e.pageY; $i.css({ "z-index": 999999999999999999999999999999999999999999999999999999999999999999999, "top": y - 20, "left": x, "position": "absolute", "font-weight": "bold", "color": "#ff6651" }); $("body").append($i); $i.animate({ "top": y - 180, "opacity": 0 }, 1500, function() { $i.remove(); }); }); }); </script>1、首先使用的是立即执行函数,这个表示直接调用执行 2、然后添加了事件监听onmousemove,当鼠标移动时就执行 3、aIndex每次加1,取arr元素,你也可以写成随机来取,要放到监听外,不然每次都会置0,就只能取“民主” 4、首先使用document.createElement()来创建div元素,然后使用document.createTextNode()来创建新文本节点,参数是要插入的文本,然后将文本节点插入div,然后把div插入body 5、然后就是对一些样式的修改,对文本样式修改不要对sTxt来改,对div来改,还有zIndex表示堆叠顺序,越大越靠前 6、也设了一个定时器,380ms移除插入body的div元素,不然就会一直存在 7、如果太烦,可以将onmousemove换成onmousedown之类的事件。
2020年11月16日
150 阅读
0 评论
0 点赞
2020-11-16
分享2款漂亮的go链接跳转动画
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="refresh" content="{{delay}};url='{{url}}';"> <title>页面加载中,请稍候...</title> <style type="text/css">html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline}body {background: #3498db;}#loader-container {width: 188px;height: 188px;color: white;margin: 0 auto;position: absolute;top: 50%;left: 50%;margin-right: -50%;transform: translate(-50%, -50%);border: 5px solid #3498db;border-radius: 50%;-webkit-animation: borderScale 1s infinite ease-in-out;animation: borderScale 1s infinite ease-in-out;}#loadingText {font-family: 'Raleway', sans-serif;font-size: 1.4em;position: absolute;top: 50%;left: 50%;margin-right: -50%;transform: translate(-50%, -50%);}@-webkit-keyframes borderScale {0% {border: 5px solid white;}50% {border: 25px solid #3498db;}100% {border: 5px solid white;}}@keyframes borderScale {0% {border: 5px solid white;}50% {border: 25px solid #3498db;}100% {border: 5px solid white;}}</style> </head> <body> <div id="loader-container"> <p id="loadingText">页面加载中...</p> </div> </body> </html><!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="refresh" content="{{delay}};url='{{url}}';"> <meta charset="utf-8"> <title>加载中</title> <script type="text/javascript"> var msg = document.title; msg = "" + msg;pos = 0; function scrollMSG() { document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++; if (pos > msg.length) pos = 0 window.setTimeout("scrollMSG()",200); } scrollMSG(); </script> <style>body{overflow:hidden;background:#666}.container{display:flex;justify-content:center;align-items:center;height:100vh;overflow:hidden;animation-delay:1s}.item-1{width:20px;height:20px;background:#f583a1;border-radius:50%;background-color:#eed968;margin:7px;display:flex;justify-content:center;align-items:center}@keyframes scale{0%{transform:scale(1)}50%,75%{transform:scale(3.5)}78%,100%{opacity:0}}.item-1:before{content:'';width:20px;height:20px;border-radius:50%;background-color:#eed968;opacity:.7;animation:scale 2s infinite cubic-bezier(0,0,0.49,1.02);animation-delay:200ms;transition:.5s all ease;transform:scale(1)}.item-2{width:20px;height:20px;background:#f583a1;border-radius:50%;background-color:#eece68;margin:7px;display:flex;justify-content:center;align-items:center}@keyframes scale{0%{transform:scale(1)}50%,75%{transform:scale(3.5)}78%,100%{opacity:0}}.item-2:before{content:'';width:20px;height:20px;border-radius:50%;background-color:#eece68;opacity:.7;animation:scale 2s infinite cubic-bezier(0,0,0.49,1.02);animation-delay:400ms;transition:.5s all ease;transform:scale(1)}.item-3{width:20px;height:20px;background:#f583a1;border-radius:50%;background-color:#eec368;margin:7px;display:flex;justify-content:center;align-items:center}@keyframes scale{0%{transform:scale(1)}50%,75%{transform:scale(3.5)}78%,100%{opacity:0}}.item-3:before{content:'';width:20px;height:20px;border-radius:50%;background-color:#eec368;opacity:.7;animation:scale 2s infinite cubic-bezier(0,0,0.49,1.02);animation-delay:600ms;transition:.5s all ease;transform:scale(1)}.item-4{width:20px;height:20px;background:#f583a1;border-radius:50%;background-color:#eead68;margin:7px;display:flex;justify-content:center;align-items:center}@keyframes scale{0%{transform:scale(1)}50%,75%{transform:scale(3.5)}78%,100%{opacity:0}}.item-4:before{content:'';width:20px;height:20px;border-radius:50%;background-color:#eead68;opacity:.7;animation:scale 2s infinite cubic-bezier(0,0,0.49,1.02);animation-delay:800ms;transition:.5s all ease;transform:scale(1)}.item-5{width:20px;height:20px;background:#f583a1;border-radius:50%;background-color:#ee8c68;margin:7px;display:flex;justify-content:center;align-items:center}@keyframes scale{0%{transform:scale(1)}50%,75%{transform:scale(3.5)}78%,100%{opacity:0}}.item-5:before{content:'';width:20px;height:20px;border-radius:50%;background-color:#ee8c68;opacity:.7;animation:scale 2s infinite cubic-bezier(0,0,0.49,1.02);animation-delay:1000ms;transition:.5s all ease;transform:scale(1)}</style> </head> <body> <div class="container"> <div class="item-1"></div> <div class="item-2"></div> <div class="item-3"></div> <div class="item-4"></div> <div class="item-5"></div> </div> </body> </html>
2020年11月16日
184 阅读
0 评论
0 点赞
2020-11-16
http怎么做自动跳转https
Apache版本如果需要整站跳转,则在网站的配置文件的标签内,键入以下内容:RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]如果对某个目录做强制跳转,则使用以下代码:RewriteEngine on RewriteBase /yourfolder RewriteCond %{SERVER_PORT} !^443$ #RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R] RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]Nginx版本在配置80端口的文件里面,写入以下内容即可。server { listen 80; server_name localhost; rewrite ^(.*)$ https://$host$1 permanent; location / { root html; index index.html index.htm; }PHP页面跳转:添加在网站php页面内if ($_SERVER["HTTPS"] <> "on") { $xredir="https://".$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; header("Location: ".$xredir); }单独页面通用代码段:较适合指定某一个子页单独https 在需要强制为https的页面上加入以下代码进行处理http—>https<script language="JavaScript" type="text/JavaScript"> function redirect() { var loc = location.href.split(':'); if(loc[0]=='http') { location.href='https:'+loc[1]; } } onload=redirect </script>
2020年11月16日
174 阅读
0 评论
0 点赞
1
...
57
58
59
...
102