首页
统计
关于
友情链接
免责声明
推荐
咔咔工具
咔咔导航
mitce加速器
Search
1
在线Q绑查询手机号、微博查询手机号 api接口 – XApi
14,440 阅读
2
完整的chatgpt商业版源码
3,435 阅读
3
超级好看的chatgpt商业化完整版本 带搭建教程
2,602 阅读
4
Chatbot UI-开源AI聊天用户界面 免翻使用ChatGPT 支持GPT-4
2,410 阅读
5
ChatGPT公众号版破解授权、扩展、支持AI绘画。一键安装!
2,184 阅读
📕生命·生活·书
📚 学无止境
🎵音乐分享
📺 影视资源
🚁 软件游戏
📁 源码分享
🤖 ChatGPT
🌥️ VPS推荐
登录
Search
标签搜索
源码
软件
ChatGPT
电影
vps
音乐
分享
模版
心情
教程
网盘
免费
游戏
IDM
Linux
特效
CDN
工具
脚本
AI
咔咔猪
累计撰写
519
篇文章
累计收到
472
条评论
首页
栏目
📕生命·生活·书
📚 学无止境
🎵音乐分享
📺 影视资源
🚁 软件游戏
📁 源码分享
🤖 ChatGPT
🌥️ VPS推荐
页面
统计
关于
友情链接
免责声明
推荐
咔咔工具
咔咔导航
mitce加速器
搜索到
197
篇与
的结果
2023-04-08
(AutoPiano)HTML5 自由钢琴
自由钢琴(AutoPiano)是利用 HTML5 技术开发的在线钢琴应用。在学习工作之余可以享受钢琴、音乐的美好,支持钢琴曲的自动播放功能、按键提示。让学习钢琴变得简单,谁都可以练成‘钢琴手’演示地址:http://www.autopiano.cn/GitHub 地址:https://github.com/WarpPrism/AutoPiano
2023年04月08日
249 阅读
0 评论
0 点赞
2023-04-07
苹果CMS v10魔加主题1.1.6免授权
首页展示内容页展示播放页展示隐藏内容,请前往内页查看详情
2023年04月07日
184 阅读
0 评论
0 点赞
2023-04-06
Linux自动挂载磁盘的方法
宝塔的自动挂载磁盘脚本:使用方法:bash https://kkpig.cn/sh/autodisk.sh脚本:#!/bin/bash PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin export PATH LANG=en_US.UTF-8 setup_path=/www #if [ $1 != "" ];then #setup_path=$1; #fi #检测磁盘数量 sysDisk=`cat /proc/partitions|grep -v name|grep -v ram|awk '{print $4}'|grep -v '^$'|grep -v '[0-9]$'|grep -v 'vda'|grep -v 'xvda'|grep -v 'sda'|grep -e 'vd' -e 'sd' -e 'xvd'` if [ "${sysDisk}" == "" ]; then echo -e "ERROR!This server has only one hard drive,exit" echo -e "此服务器只有一块磁盘,无法挂载" echo -e "Bye-bye" exit; fi #检测/www目录是否已挂载磁盘 mountDisk=`df -h | awk '{print $6}' |grep www` if [ "${mountDisk}" != "" ]; then echo -e "www directory has been mounted,exit" echo -e "www目录已被挂载,不执行任何操作" echo -e "Bye-bye" exit; fi #检测是否有windows分区 winDisk=`fdisk -l |grep "NTFS\|FAT32"` if [ "${winDisk}" != "" ];then echo 'Warning: The Windows partition was detected. For your data security, Mount manually.'; echo "危险 数据盘为windwos分区,为了你的数据安全,请手动挂载,本脚本不执行任何操作。" exit; fi echo " +---------------------------------------------------------------------- | Bt-WebPanel Automatic disk partitioning tool +---------------------------------------------------------------------- | Copyright © 2015-2017 BT-SOFT(http://www.bt.cn) All rights reserved. +---------------------------------------------------------------------- | Auto mount partition disk to $setup_path +---------------------------------------------------------------------- " #数据盘自动分区 fdiskP(){ for i in `cat /proc/partitions|grep -v name|grep -v ram|awk '{print $4}'|grep -v '^$'|grep -v '[0-9]$'|grep -v 'vda'|grep -v 'xvda'|grep -v 'sda'|grep -e 'vd' -e 'sd' -e 'xvd'`; do #判断指定目录是否被挂载 isR=`df -P|grep $setup_path` if [ "$isR" != "" ];then echo "Error: The $setup_path directory has been mounted." return; fi isM=`df -P|grep '/dev/${i}1'` if [ "$isM" != "" ];then echo "/dev/${i}1 has been mounted." continue; fi #判断是否存在未分区磁盘 isP=`fdisk -l /dev/$i |grep -v 'bytes'|grep "$i[1-9]*"` if [ "$isP" = "" ];then #开始分区 fdisk -S 56 /dev/$i << EOF n p 1 wq EOF sleep 5 #检查是否分区成功 checkP=`fdisk -l /dev/$i|grep "/dev/${i}1"` if [ "$checkP" != "" ];then #格式化分区 mkfs.ext4 /dev/${i}1 mkdir $setup_path #挂载分区 sed -i "/\/dev\/${i}1/d" /etc/fstab echo "/dev/${i}1 $setup_path ext4 defaults 0 0" >> /etc/fstab mount -a df -h fi else #判断是否存在Windows磁盘分区 isN=`fdisk -l /dev/$i|grep -v 'bytes'|grep -v "NTFS"|grep -v "FAT32"` if [ "$isN" = "" ];then echo 'Warning: The Windows partition was detected. For your data security, Mount manually.'; return; fi #挂载已有分区 checkR=`df -P|grep "/dev/$i"` if [ "$checkR" = "" ];then mkdir $setup_path sed -i "/\/dev\/${i}1/d" /etc/fstab echo "/dev/${i}1 $setup_path ext4 defaults 0 0" >> /etc/fstab mount -a df -h fi #清理不可写分区 echo 'True' > $setup_path/checkD.pl if [ ! -f $setup_path/checkD.pl ];then sed -i "/\/dev\/${i}1/d" /etc/fstab mount -a df -h else rm -f $setup_path/checkD.pl fi fi done } stop_service(){ /etc/init.d/bt stop if [ -f "/etc/init.d/nginx" ]; then /etc/init.d/nginx stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/httpd" ]; then /etc/init.d/httpd stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/mysqld" ]; then /etc/init.d/mysqld stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/pure-ftpd" ]; then /etc/init.d/pure-ftpd stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/tomcat" ]; then /etc/init.d/tomcat stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/redis" ]; then /etc/init.d/redis stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/memcached" ]; then /etc/init.d/memcached stop > /dev/null 2>&1 fi if [ -f "/www/server/panel/data/502Task.pl" ]; then rm -f /www/server/panel/data/502Task.pl if [ -f "/etc/init.d/php-fpm-52" ]; then /etc/init.d/php-fpm-52 stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-53" ]; then /etc/init.d/php-fpm-53 stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-54" ]; then /etc/init.d/php-fpm-54 stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-55" ]; then /etc/init.d/php-fpm-55 stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-56" ]; then /etc/init.d/php-fpm-56 stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-70" ]; then /etc/init.d/php-fpm-70 stop > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-71" ]; then /etc/init.d/php-fpm-71 stop > /dev/null 2>&1 fi fi } start_service() { /etc/init.d/bt start if [ -f "/etc/init.d/nginx" ]; then /etc/init.d/nginx start > /dev/null 2>&1 fi if [ -f "/etc/init.d/httpd" ]; then /etc/init.d/httpd start > /dev/null 2>&1 fi if [ -f "/etc/init.d/mysqld" ]; then /etc/init.d/mysqld start > /dev/null 2>&1 fi if [ -f "/etc/init.d/pure-ftpd" ]; then /etc/init.d/pure-ftpd start > /dev/null 2>&1 fi if [ -f "/etc/init.d/tomcat" ]; then /etc/init.d/tomcat start > /dev/null 2>&1 fi if [ -f "/etc/init.d/redis" ]; then /etc/init.d/redis start > /dev/null 2>&1 fi if [ -f "/etc/init.d/memcached" ]; then /etc/init.d/memcached start > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-52" ]; then /etc/init.d/php-fpm-52 start > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-53" ]; then /etc/init.d/php-fpm-53 start > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-54" ]; then /etc/init.d/php-fpm-54 start > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-55" ]; then /etc/init.d/php-fpm-55 start > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-56" ]; then /etc/init.d/php-fpm-56 start > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-70" ]; then /etc/init.d/php-fpm-70 start > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-71" ]; then /etc/init.d/php-fpm-71 start > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-72" ]; then /etc/init.d/php-fpm-71 start > /dev/null 2>&1 fi if [ -f "/etc/init.d/php-fpm-73" ]; then /etc/init.d/php-fpm-71 start > /dev/null 2>&1 fi echo "True" > /www/server/panel/data/502Task.pl } while [ "$go" != 'y' ] && [ "$go" != 'n' ] do read -p "Do you want to try to mount the data disk to the $setup_path directory?(y/n): " go; done if [ "$go" = 'n' ];then echo -e "Bye-bye" exit; fi if [ -f "/etc/init.d/bt" ] && [ -f "/www/server/panel/data/port.pl" ]; then disk=`cat /proc/partitions|grep -v name|grep -v ram|awk '{print $4}'|grep -v '^$'|grep -v '[0-9]$'|grep -v 'vda'|grep -v 'xvda'|grep -v 'sda'|grep -e 'vd' -e 'sd' -e 'xvd'` diskFree=`cat /proc/partitions |grep ${disk}|awk '{print $3}'` wwwUse=`du -sh -k /www|awk '{print $1}'` if [ "${diskFree}" -lt "${wwwUse}" ]; then echo -e "Sorry,your data disk is too small,can't coxpy to the www." echo -e "对不起,你的数据盘太小,无法迁移www目录数据到此数据盘" exit; else echo -e "" echo -e "stop bt-service" echo -e "停止宝塔服务" echo -e "" sleep 3 stop_service echo -e "" mv /www /bt-backup echo -e "disk partition..." echo -e "磁盘分区..." sleep 2 echo -e "" fdiskP echo -e "" echo -e "move disk..." echo -e "迁移数据中..." \cp -r -p -a /bt-backup/* /www echo -e "" echo -e "Done" echo -e "迁移完成" echo -e "" echo -e "start bt-service" echo -e "启动宝塔服务" echo -e "" start_service fi else fdiskP echo -e "" echo -e "Done" echo -e "挂载成功" fi
2023年04月06日
145 阅读
0 评论
0 点赞
2023-04-06
网站logo帅气的css亮光扫过特效
在图片上出现白光条并划过,无限循环的模式。但是有强迫症的站长注意啦,扫的你头晕眼花 ::(what) <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>LOGO扫光效果</title> <meta name="keywords" content=""> <meta name="description" content=""> <style> .logo{ width:200px; height:70px; display: flex; line-height: 70px; position: relative; overflow: hidden; } .logo img{ width:100%; height:70px; } /**根据logo外div样式名称修改before前名称**/ .logo:before{ content:""; position: absolute; left: -10px; /**第一个数字参数控制扫光速度,数字越大越慢**/ top: -460px; width: 200px; height: 10px; /**光标的宽度,可根据实际调整**/ background-color: rgba(255,255,255,.5); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); -webkit-animation: searchLights 1s ease-in 1s infinite; -o-animation: searchLights 1s ease-in 1s infinite; animation: searchLights 1.5s ease-in 1s infinite;/**第一个数字参数控制扫光速度,数字越大越慢**/ } @-webkit-keyframes searchLights { 0% { left: -80px; top: 0; } to { left: 130px; top: 0px; } } @-o-keyframes searchLights { 0% { left: -80px; top: 0; } to { left: 130px; top: 0px; } } @-moz-keyframes searchLights { 0% { left: -80px; top: 0; } to { left: 130px; top: 0px; } } @keyframes searchLights { 0% { left: -80px; top: 0; } to { left: 130px; top: 0px; } } </style> </head> <body> <div class="logo"> <img src='https://pica.zhimg.com/80/v2-c2584ebb549fe87dda597e52b71c981b_720w.png'> </div> </body> </html>
2023年04月06日
201 阅读
0 评论
0 点赞
2023-04-05
Typecho博客一个漂亮的主题 joe魔改
首页文章页面隐藏内容,请前往内页查看详情
2023年04月05日
274 阅读
2 评论
0 点赞
2023-04-04
网站全站变灰代码 这个每个站点都要用吧
为了纪念一些影响力很大的伟人逝世或者重要的纪念日的时候需要让网页全部变灰来表示我们对逝者的悼念。其实这个功能很简单,只需要在HTML 的head标签里加入如下代码即可<style type="text/css"> html { filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); -webkit-filter: grayscale(100%);} </style>
2023年04月04日
179 阅读
0 评论
0 点赞
2023-04-04
英皇影视cms采集系统搭建,好用的电影网站程序 一键安装【源码+教程】
英皇cms是目前国内专业的免费影视cms系统,可快速变现,pc+h5+app,永久免费使用。英皇影视cms全方位满足你的需求,PC、H5、APP、全免费影视系统一键安装,好用的电影网站程序,解决片源、广告联盟问题,主要是APP也免费哦。为什么使用英皇cms影视系统?无论你是小白还是老手,无论你是个人还是企业,欢迎使用英皇cms影视内容管理系统系统。官方永久提供技术和资源扶持、助力价值实现,让您快速变现立即使用!快速安装部署英皇cms:安装部署指引、使用说明、论坛交流、模板提供、构建助手;从安装到运营,全面开放,规范稳定帮助你高效率二次开发和深度使用!最后:英皇cms可以实现很多影视资源站的更新,非常方便快速的建立自己的影视网站,是国内专业的影视cms系统。目前,越来越多的站长开始使用英皇影视cms建立自己的影视站,实现快速变现。搭建设备需求:电脑+服务器+域名这个只是源码,感兴趣学习的自行下单,无一对一指导下载:https://kkpig.lanzoub.com/ifMK90s1bqna密码:kkpig
2023年04月04日
95 阅读
0 评论
0 点赞
2023-04-04
彩虹知识付费模板4月最新可用版
Ver:1.3新增工单自动回复新增Agod双模板新增晴玖商城对接新增批量商品上架新增批量图片保证新增批量商品标题修改优化购买页优化二维码海报生成优化在线投稿响应速度本系统有本人亲自修复更新后所发布出来,全网独家首发,且包含众多功能本程序并非适用于知识付费也可以做虚拟商城、实物商城、虚拟卡网等扩展性极高可无限发展代理分销、普通分站、高级分站,高级分站可以无限扩展普通分站项目投稿:分站用户可以投稿项目到后台推广发圈:后台添加发圈素材,用户可以复制素材发到朋友圈等社交平台售后工单:客户遇到问题可以提交工单到后台,有效避免支付接口被投诉其余员工添加、每日签到、推广功能、抽奖功能、文章功能、发卡功能请您亲自体验,这里不做过多介绍支付已对接官方支付宝、微信、财付通支付+易支付+码支付下载:https://kkpig.lanzoub.com/iAiHt0s1bjdi密码:azd6
2023年04月04日
137 阅读
0 评论
0 点赞
2023-04-03
前端常用库免费CDN服务
我平时用cdn只是懒得去下载库,直接使用免费cdn服务开发页面。如果是公司生产环境的话,免费CDN服务要慎用,因为免费CDN服务随时可能超时或者不服务,最好还是你自己做一个静态服务管理静态文件。都有哪些cdn服务网站1、BootCDN: 稳定、快速、免费的前端开源项目CDN加速服务,共收录了3934个前端开源项目BootCDN:https://www.bootcdn.cn/2、七牛云存储开放静态文件CDN: 由七牛云提供包括JS、CSS、image和swf等静态文件的七牛云:http://www.staticfile.org/3、字节跳动静态资源库: 字节跳动静态资源库很齐全字节跳动:http://cdn.bytedance.com/4、新浪云计算CDN公共库新浪云计算:https://lib.sinaapp.com/5、又拍云JS库CDN服务:又拍云:http://jscdn.upai.com/6、谷歌cnd服务,国内被墙谷歌cnd服务:https://developers.google.com/speed/libraries?hl=zh-cn7、CDNJS cdn服务CDNJS:https://cdnjs.com/8、Microsoft Ajax CDN服务Microsoft:https://learn.microsoft.com/en-us/aspnet/ajax/cdn/overview9、微软的静态文件公共库,jsDelivr是基于MaxCDN的一个免费开源的CDN解决方案,支持npm, GitHub, WordPress,Deno等。每月处理超过800亿次请求。jsDelivr是 唯-拥有国内颁发的有效ICP许可证的公共CDN,并直接拥有数百个网点jsDelivr:https://www.jsdelivr.com/
2023年04月03日
104 阅读
0 评论
0 点赞
2023-04-02
绿色精美网址发布页HTML单页源码
绿色精美网址发布页HTML单页源码,一款单页的网址发布页单页 HTML 模板,可用于网址发布页使用,本模板简约商务,页面精美没有花里胡哨的效果,喜欢的敬请使用两个页面index.html和404.htmlindex.html404.html下载地址:https://kkpig.lanzoub.com/ipJS20ruysdi密码:91hd
2023年04月02日
130 阅读
0 评论
0 点赞
2023-03-30
分享一个知乎视频解析源码
视频地址https://www.zhihu.com/zvideo/1612964713997950976取视频id:1612964711208558592接口地址:https://lens.zhihu.com/api/v4/videos/1612964711208558592<?php $vid = $_GET['vid']; $api = "https://lens.zhihu.com/api/v4/videos/".$vid.""; $html = file_get_contents($api); $json = json_decode($html); $url = $json->playlist->LD->play_url; header("Location: {$url}"); ?>video标签播放<video src="index.php?vid=1612964711208558592" autoplay="autoplay" controls="controls" > 您的浏览器不支持 video 标签。 </video>看下面效果{dplayer src="https://kkpig.cn/jiexi/?vid=1612964711208558592"/}
2023年03月30日
71 阅读
0 评论
0 点赞
2023-03-26
使用HTML+CSS实现网页Loading加载效果,支持定时或加载完成后隐藏
网页使用loading可以给用户带来更好的体验,避免网页渲染中长时间出现网页整体空白从而影响访客的体验,loading在部分大型 APP 也有在应用。下面使用 HTML+CSS+JS 实现完整的 Loading效果。请先引入 jQuery,因为 JS 定时隐藏依赖 jq。<div class="loaderbg"> <div class="spinner"> <div class="double rect1"></div> <div class="double rect2"></div> <div class="double rect3"></div> <div class="double rect4"></div> <div class="double rect5"></div> </div> </div>loaderbg类为loading的背景色,为白色。.loaderbg { background-color: #fff; width: 100%; height: 100%; overflow: hidden; position: fixed; left: 0; top: 0; z-index: 99999999 } ::-webkit-scrollbar-thumb { background-color: #b1b1b1; border-radius: 15px } ::-webkit-scrollbar-thumb:hover { background-color: #777 } .spinner { position: absolute; top: 50%; left: 50%; margin-left: -25px; margin-top: -30px; width: 50px; height: 60px; text-align: center; font-size: 10px } .spinner>.double { background: #49a9ee; height: 100%; width: 6px; display: inline-block; -webkit-animation: stretchDelay 1.2s infinite ease-in-out; animation: stretchDelay 1.2s infinite ease-in-out } .spinner .rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s } .spinner .rect3 { -webkit-animation-delay: -1.0s; animation-delay: -1.0s } .spinner .rect4 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s } .spinner .rect5 { -webkit-animation-delay: -0.8s; animation-delay: -0.8s } @-webkit-keyframes stretchDelay { 0%, 40%, 100% { -webkit-transform: scaleY(.4) } 20% { -webkit-transform: scaleY(1) } } @keyframes stretchDelay { 0%, 40%, 100% { transform: scaleY(.4); -webkit-transform: scaleY(.4) } 20% { transform: scaleY(1); -webkit-transform: scaleY(1) } }js 在这里的作用为定时或网页加载完成后关闭loaderbg类//页面加载完成之后隐藏loading $(window).load(function () { $(".loaderbg").hide(); }); //设置页面加载3 秒之后隐藏loading $(function () { setTimeout(function () { $(".loaderbg").hide(); },3000); })第一种方法是等待网页全部加载完成后再隐藏loading,但同时如果网页其他资源文件加载缓慢(如图片等),loading也会随之存在更长时间。第二中方法是设置定时隐藏loading,可以根据实际需求更改隐藏时间,默认为 3s。以上第一种方法 jquery 低版本测试正常,高版本可能会报错:ncaught TypeError: a.indexOf is not a function at r.fn.load原因是在 jQuery 3.x 中取消了 load(),将 $(window).load(function () { 替换为 $(window).on('load',function(){ 即可,如:$(window).on('load',function(){ $(".loaderbg").hide(); });同时考虑到如果用户的浏览器侧不支持 JavaScript 或者 JavaScript 被禁用,需要使用 noscript 标签,添加 display:none 属性即可,noscript 只会在浏览器环境不支持 JS 或者 JS 被禁用才会执行<noscript> <style> .loaderbg { display: none; } </style> </noscript>其实很简单去试试吧
2023年03月26日
95 阅读
0 评论
0 点赞
1
...
14
15
16
17