首页
友链
直播
统计
更多
壁纸
归档
留言
影视
Search
1
南图博客 侵权投诉以及声明
6,870,067 阅读
2
最火QQ爆粉神器工具(不频繁加好友)
40,373 阅读
3
彩虹代刷源码v6.1.5破解免授权版
39,676 阅读
4
个人导航页美化版源码1.1版 带后台版
35,685 阅读
5
swapidc对接任意易支付插件(附教程)
30,512 阅读
技术教程
代刷教程
经验共享
建站源码
程序模板
Emlog
WordPress
Typecho
其他模板
工具软件
网络异闻
影视推荐
杂七杂八
热点新闻
人间败类
游戏推荐
我的藏货
歌曲分享
壁纸图片
视频保存
登录
/
注册
Search
标签搜索
HTML
破解版
安卓
动作
单人
影视
WordPress
免费
开放世界
工具
小说
模拟
绿化版
第一人称
源码
3A大作
引导页
氛围
多人
emlog模板
南图
累计撰写
1,532
篇文章
累计收到
5,173
条评论
首页
栏目
技术教程
代刷教程
经验共享
建站源码
程序模板
Emlog
WordPress
Typecho
其他模板
工具软件
网络异闻
影视推荐
杂七杂八
热点新闻
人间败类
游戏推荐
我的藏货
歌曲分享
壁纸图片
视频保存
页面
友链
直播
统计
壁纸
归档
留言
影视
搜索到
218
篇与
的结果
2020-01-16
Linux如何下安装Python3.7.0
安装:Centos 系统本身默认安装有 python2.x,版本 x 根据不同版本系统有所不同,可通过 python --V 或 python --version 查看系统自带的 python 版本,有一些系统命令时需要用到 python2,不能卸载。安装依赖包(1)首先安装 gcc 编译器,gcc 有些系统版本已经默认安装,通过 gcc --version 查看,没安装的先安装 gccyum -y install gcc(2)安装其它依赖包,(注:不要缺少,否则有可能安装 python 出错,python3.7.0 以下的版本可不装 libffi-devel )yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel libffi-devel下载 Python 安装包(1)在 https://www.python.org/ftp/python/ 中选择自己需要的 python 源码包,我下载的是 python3.7.0(大家也可以去 https://www.python.org 官网首页下载,找到 downloads,就可以选择想要的版本下载了)这边就演示 Linux 下的:wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tgz(2)解压 Python-3.7.0.tgztar -zxvf Python-3.7.0.tgz(3)建立一个空文件夹,用于存放 python3 程序mkdir /usr/local/python3 (4) 执行配置文件,编译,编译安装 cd Python-3.7.0 ./configure --prefix=/usr/local/python3 make && make install安装完成没有提示错误便安装成功了建立软连接ln -s /usr/local/python3/bin/python3.7 /usr/bin/python3 ln -s /usr/local/python3/bin/pip3.7 /usr/bin/pip34. 测试一下 python3 是否可以用[root@mini Python-3.7.0]# python3 Python 3.7.0 (default, Jul 28 2018, 22:47:29) [GCC 4.8.5 20150623 (Red Hat 4.8.5-28)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> print("hello world!") hello world! >>> exit() [root@mini Python-3.7.0]# pip3 --version pip 10.0.1 from /usr/local/python3/lib/python3.7/site-packages/pip (python 3.7)可以看到 python3.7.0 可以正常使用
2020年01月16日
2,444 阅读
0 评论
0 点赞
2020-01-14
自动采集超清电脑壁纸源码
无需安装,自带api采集接口,集合360壁纸,百度壁纸,必应壁纸,简单方便。 {abtn icon="Font Awesome图标" color="#CE1212" href="https://ntaa.lanzoue.com/i8o0xwh" radius="圆角(最大17.5px)"}蓝奏云{/abtn}
2020年01月14日
4,580 阅读
0 评论
0 点赞
2020-01-07
幽灵404页面代码 跟随鼠标动画
介绍在某站看到的,感觉还不错,就扒来了。幽灵会有浮动动画,跟随鼠标动画。截图代码如下<!doctype html> <html> <head> <meta charset="utf-8"> <title>幽灵404页面</title> <script type="text/javascript" src="https://a-oss.zmki.cn/2020/20200101-cc0f0c1509531.js"></script> <style> html, body { background: #28254C; font-family: 'Ubuntu'; } * { box-sizing: border-box; } .box { width: 350px; height: 100%; max-height: 600px; min-height: 450px; background: #332F63; border-radius: 20px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); padding: 30px 50px; } .box .box__ghost { padding: 15px 25px 25px; position: absolute; left: 50%; top: 30%; transform: translate(-50%, -30%); } .box .box__ghost .symbol:nth-child(1) { opacity: .2; animation: shine 4s ease-in-out 3s infinite; } .box .box__ghost .symbol:nth-child(1):before, .box .box__ghost .symbol:nth-child(1):after { content: ''; width: 12px; height: 4px; background: #fff; position: absolute; border-radius: 5px; bottom: 65px; left: 0; } .box .box__ghost .symbol:nth-child(1):before { transform: rotate(45deg); } .box .box__ghost .symbol:nth-child(1):after { transform: rotate(-45deg); } .box .box__ghost .symbol:nth-child(2) { position: absolute; left: -5px; top: 30px; height: 18px; width: 18px; border: 4px solid; border-radius: 50%; border-color: #fff; opacity: .2; animation: shine 4s ease-in-out 1.3s infinite; } .box .box__ghost .symbol:nth-child(3) { opacity: .2; animation: shine 3s ease-in-out .5s infinite; } .box .box__ghost .symbol:nth-child(3):before, .box .box__ghost .symbol:nth-child(3):after { content: ''; width: 12px; height: 4px; background: #fff; position: absolute; border-radius: 5px; top: 5px; left: 40px; } .box .box__ghost .symbol:nth-child(3):before { transform: rotate(90deg); } .box .box__ghost .symbol:nth-child(3):after { transform: rotate(180deg); } .box .box__ghost .symbol:nth-child(4) { opacity: .2; animation: shine 6s ease-in-out 1.6s infinite; } .box .box__ghost .symbol:nth-child(4):before, .box .box__ghost .symbol:nth-child(4):after { content: ''; width: 15px; height: 4px; background: #fff; position: absolute; border-radius: 5px; top: 10px; right: 30px; } .box .box__ghost .symbol:nth-child(4):before { transform: rotate(45deg); } .box .box__ghost .symbol:nth-child(4):after { transform: rotate(-45deg); } .box .box__ghost .symbol:nth-child(5) { position: absolute; right: 5px; top: 40px; height: 12px; width: 12px; border: 3px solid; border-radius: 50%; border-color: #fff; opacity: .2; animation: shine 1.7s ease-in-out 7s infinite; } .box .box__ghost .symbol:nth-child(6) { opacity: .2; animation: shine 2s ease-in-out 6s infinite; } .box .box__ghost .symbol:nth-child(6):before, .box .box__ghost .symbol:nth-child(6):after { content: ''; width: 15px; height: 4px; background: #fff; position: absolute; border-radius: 5px; bottom: 65px; right: -5px; } .box .box__ghost .symbol:nth-child(6):before { transform: rotate(90deg); } .box .box__ghost .symbol:nth-child(6):after { transform: rotate(180deg); } .box .box__ghost .box__ghost-container { background: #fff; width: 100px; height: 100px; border-radius: 100px 100px 0 0; position: relative; margin: 0 auto; animation: upndown 3s ease-in-out infinite; } .box .box__ghost .box__ghost-container .box__ghost-eyes { position: absolute; left: 50%; top: 45%; height: 12px; width: 70px; } .box .box__ghost .box__ghost-container .box__ghost-eyes .box__eye-left { width: 12px; height: 12px; background: #332F63; border-radius: 50%; margin: 0 10px; position: absolute; left: 0; } .box .box__ghost .box__ghost-container .box__ghost-eyes .box__eye-right { width: 12px; height: 12px; background: #332F63; border-radius: 50%; margin: 0 10px; position: absolute; right: 0; } .box .box__ghost .box__ghost-container .box__ghost-bottom { display: flex; position: absolute; top: 100%; left: 0; right: 0; } .box .box__ghost .box__ghost-container .box__ghost-bottom div { flex-grow: 1; position: relative; top: -10px; height: 20px; border-radius: 100%; background-color: #fff; } .box .box__ghost .box__ghost-container .box__ghost-bottom div:nth-child(2n) { top: -12px; margin: 0 -0px; border-top: 15px solid #332F63; background: transparent; } .box .box__ghost .box__ghost-shadow { height: 20px; box-shadow: 0 50px 15px 5px #3B3769; border-radius: 50%; margin: 0 auto; animation: smallnbig 3s ease-in-out infinite; } .box .box__description { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); } .box .box__description .box__description-container { color: #fff; text-align: center; width: 200px; font-size: 16px; margin: 0 auto; } .box .box__description .box__description-container .box__description-title { font-size: 24px; letter-spacing: .5px; } .box .box__description .box__description-container .box__description-text { color: #8C8AA7; line-height: 20px; margin-top: 20px; } .box .box__description .box__button { display: block; position: relative; background: #FF5E65; border: 1px solid transparent; border-radius: 50px; height: 50px; text-align: center; text-decoration: none; color: #fff; line-height: 50px; font-size: 18px; padding: 0 70px; white-space: nowrap; margin-top: 25px; transition: background .5s ease; overflow: hidden; } .box .box__description .box__button:before { content: ''; position: absolute; width: 20px; height: 100px; background: #fff; bottom: -25px; left: 0; border: 2px solid #fff; transform: translateX(-50px) rotate(45deg); transition: transform .5s ease; } .box .box__description .box__button:hover { background: transparent; border-color: #fff; } .box .box__description .box__button:hover:before { transform: translateX(250px) rotate(45deg); } @keyframes upndown { 0% { transform: translateY(5px); } 50% { transform: translateY(15px); } 100% { transform: translateY(5px); } } @keyframes smallnbig { 0% { width: 90px; } 50% { width: 100px; } 100% { width: 90px; } } @keyframes shine { 0% { opacity: .2; } 25% { opacity: .1; } 50% { opacity: .2; } 100% { opacity: .2; } } </style> </head> <body> <div class="box"> <div class="box__ghost"> <div class="symbol"></div> <div class="symbol"></div> <div class="symbol"></div> <div class="symbol"></div> <div class="symbol"></div> <div class="symbol"></div> <div class="box__ghost-container"> <div class="box__ghost-eyes"> <div class="box__eye-left"></div> <div class="box__eye-right"></div> </div> <div class="box__ghost-bottom"> <div></div> <div></div> <div></div> <div></div> <div></div> </div> </div> <div class="box__ghost-shadow"></div> </div> <div class="box__description"> <div class="box__description-container"> <div class="box__description-title">404错误!</div> <div class="box__description-text">看来我们找不到你要找的那一页</div> </div> <a href="/index.php" class="box__button">返回</a> </div> </div> <script> //based on https://dribbble.com/shots/3913847-404-page var pageX = $(document).width(); var pageY = $(document).height(); var mouseY=0; var mouseX=0; $(document).mousemove(function( event ) { //verticalAxis mouseY = event.pageY; yAxis = (pageY/2-mouseY)/pageY*300; //horizontalAxis mouseX = event.pageX / -pageX; xAxis = -mouseX * 100 - 100; $('.box__ghost-eyes').css({ 'transform': 'translate('+ xAxis +'%,-'+ yAxis +'%)' }); //console.log('X: ' + xAxis); });</script> </body> </html>
2020年01月07日
3,401 阅读
0 评论
0 点赞
2020-01-01
南图博客 侵权投诉以及声明
免责声明本站资源来自会员发布以及互联网收集,仅供用于学习和交流,请遵循相关法律法规。本站一切资源不代表本站立场,全体用户必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容!如果您喜欢该程序和内容,请支持正版,购买注册,得到更好的正版服务。我们非常重视版权问题,如有侵权请邮件与我们联系处理。敬请谅解!如有侵权 争议、后门、不妥 请联系邮箱:1526510045@qq.com 处理!注意:本站发布所有信息,均来自互联网收集,与本站无关。请玩家仔细辨认信息的真实性,避免上当受骗!本站所有软件以及源码都来源于网络收集修改或者交换!如果侵犯了您的权益,请及时告知我,我即刻处理!站长微信:zz12230125 站长QQ:1526510045
2020年01月01日
6,870,067 阅读
0 评论
1,112 点赞
2019-12-17
宝塔Linux系统挂载数据盘教程
Centos系统请使用以下命令:yum install wget -y && wget -O auto_disk.sh http://download.bt.cn/tools/auto_disk.sh && bash auto_disk.shUbuntu系统请使用以下命令:wget -O auto_disk.sh http://download.bt.cn/tools/auto_disk.sh && sudo bash auto_disk.shDebian系统请使用以下命令:wget -O auto_disk.sh http://download.bt.cn/tools/auto_disk.sh && bash auto_disk.sh一键连接服务器助手下载:https://v.nta6.com/usr/uploads/2021/04/3609761055.zip
2019年12月17日
7,009 阅读
0 评论
0 点赞
1
...
39
40
41
...
44