首页
统计
壁纸
友链
Search
1
免费弹幕接口分享
175 阅读
2
苹果cms合并插件晨曦原创版
98 阅读
3
苹果cms会员系统,getapp会员模式,苹果cms卖会员程序
74 阅读
4
晨曦弹幕系统
59 阅读
5
觅知ART弹幕播放器全新UI定制播放器MizhiPlayer多功能弹幕播放器支持切片
54 阅读
源码分享
技术分享
苹果cms
登录
Search
晨曦
累计撰写
31
篇文章
累计收到
40
条评论
首页
栏目
源码分享
技术分享
苹果cms
页面
统计
壁纸
友链
搜索到
3
篇与
的结果
2025-03-14
彩虹自助下单系统开源程序
前言彩虹自助下单系统陪伴了多少网络人一路颠沛流离走来我们一路看着彩虹自助下单系统成长、它也陪伴了我从校园到实习,从实习到社会、在这些岁月中,不乏有人把这么好的系统运用到了黑灰,诈骗产业。正如我很喜欢的一首歌里面的歌词说的那样、 一代人终将老去但总有人正年轻希望彩虹下一代产品越做越好山高路远,纵马扬鞭,愿往后旅途,三冬暖,春不寒,天黑有灯,下雨有伞,此生尽兴,不负勇往这是最后一个彩虹自助下单系统版本了,最重要的这次是官方版本源码,可放心使用。(无需购买授权){dotted startColor="#ff6c6c" endColor="#1989fa"/}PHP版本: > 7.0.1去除所有授权验证支持自定义说说接口去除后台广告与更新可自定义易支付接口安装教程安装教程:1、使用浏览器访问 域名/install/index.php,按照步骤流程进行安装。路径地址详情:admin (管理员后台)user (分站及用户)assets (资源文件)includes (应用程序核心文件)other (支付目录)install (程序安装)template (模板)config.php (数据库配置文件)声明如果在使用过程中,出现违法违纪的情况下均与本人无关。全由使用者承担。如在使用中出现问题,如:BUG、数据泄露及丢失、入侵等安全问题,全由使用者承担。此系统仅供个人学习、研究之用,请勿用于商业用途。不提供任何技术支持。在您下载源码后视为您已经了解使用协议并知晓法律协议。下载隐藏内容,请前往内页查看详情
2025年03月14日
14 阅读
2 评论
0 点赞
2025-03-13
禁止网站被F12代码
前言禁止F12的好处1.防止恶意代码注入:通过禁止F12,网站可以减少黑客或恶意用户通过开发者工具获取网站的敏感信息或注入恶意代码的风险。2.保护内容版权:禁止F12可以防止用户通过开发者工具下载或复制网站的受版权保护的内容,从而保护知识产权和创作者的权益。3.防止误操作:有时候用户可能会在浏览器的开发者工具中进行误操作,而禁止F12可以减少这种风险,避免用户对页面结构或代码进行无意的修改或删除。注意事项然而,需要注意的是,禁止F12并不能完全阻止技术熟练的用户对网站进行修改或获取信息。因此,禁止F12只是增加了一道保护措施,但并不能绝对保证网站的安全和内容的保护。同时,禁用F12也可能对正常用户带来一些不便,例如无法查看网页源代码、调试网页等操作。代码1<script> function fuckyou(){ window.close(); //关闭当前窗口(防抽) window.location="about:blank"; //将当前窗口跳转置空白页 } function click(e) { if (document.all) { if (event.button==2||event.button==3) { alert("禁止拿代码"); oncontextmenu='return false'; } } if (document.layers) { if (e.which == 3) { oncontextmenu='return false'; } } } if (document.layers) { fuckyou(); document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; document.oncontextmenu = new Function("return false;") document.onkeydown =document.onkeyup = document.onkeypress=function(){ if(window.event.keyCode == 123) { fuckyou(); window.event.returnValue=false; return(false); } } </script>代码2<script language="JavaScript"> //禁止页面选择以及鼠标右键 document.οncοntextmenu=function(){return false;}; document.onselectstart=function(){return false;}; let h = window.innerHeight; let w = window.innerWidth; //禁用右键 document.oncontextmenu = function () { return false; }; //禁用开发者工具F12和禁止shift+ctrl+i调起开发者工具 document.onkeydown = function () { if (window.event && window.event.keyCode == 123) { event.keyCode = 0; event.returnValue = false; return false; } if (event.shiftKey && event.ctrlKey && event.keyCode === 73) { event.preventDefault(); return false; } }; </script>将上述代码放在你网站的footer.php的最下面,或者在head里面引入也行。
2025年03月13日
11 阅读
0 评论
0 点赞
2025-03-13
图片在线转换SVG单页HTML源码
介绍图片转换SVG网页HTML源码,只是把位图包装成了矢量图的格式。直接把位图的每个像素塞进去svg,这样生成的放大后会样糊。源码<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>SVG图片生成器</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f7f7f7; font-family: Arial, sans-serif; } .container { text-align: center; padding: 20px; background-color: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } h1 { margin-top: 0; } input[type="file"] { margin-bottom: 10px; display: none; } label { display: inline-block; padding: 10px 20px; background-color: #007bff; color: #fff; cursor: pointer; } .avatar { margin-top: 10px; max-width: 100%; height: auto; } .download-button { margin-top: 10px; display: none; } </style> </head> <body> <div class="container"> <h1>SVG图片生成器</h1> <label for="upload">选择图片</label> <input id="upload" type="file" required accept="image/gif, image/jpeg, image/png"> <img class="avatar" src="" alt="Avatar Preview"> <a class="download-button" href="#" download="noavatar.svg">下载 SVG</a> </div> <script> document.getElementById('upload').addEventListener('change', function() { var file = this.files[0]; if (file) { var reader = new FileReader(); reader.readAsDataURL(file); reader.addEventListener('load', function() { var dataURL = this.result; var svgCode = '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="120" height="120"><image xlink:href="'+dataURL+'" height="120" width="120"/></svg>'; var blob = new Blob([svgCode], {type: 'image/svg+xml'}); var url = URL.createObjectURL(blob); document.querySelector('.avatar').src = url; document.querySelector('.download-button').style.display = 'inline-block'; document.querySelector('.download-button').href = url; }); } }); </script> </body> </html>
2025年03月13日
7 阅读
0 评论
0 点赞