由于风暴论坛暂时关闭,现已将重要资讯与信息转移至此站点。对此多有不便处,请谅解!

Win10系统找不到处理器电源管理,如何给CPU设备温度?

分类: 操作系统技术 发布: roger 浏览: 日期: 2022年8月11日

解决办法如下:

  1. 同时按下“Windows键”+“R键”,然后输入regedit;
  2. 在注册表编辑器中,依次点击注册表左侧的:HKEY_LOCAL_MACHINE、SYSTEM、CurrentControlSet、Control、Power,右侧可以看到CsEnabled选项,双击,将数值“1”改为“0”,然后点击确定,最后重启电脑。
  3. ...

宏碁传奇x,降低风扇噪音的办法

分类: 操作系统技术 发布: roger 浏览: 日期: 2022年8月11日

✨方法1

按下键盘上的window键+Q键,搜索quick access,开启静音模式。

✨方法2:

调整处理器的电源管理,最大处理器状态调至90左右。在windows设置里,点系统——点电源和睡眠——点其他电源设置——点acer的更改计划设置——点更改高级电源设置——点击处理器电源管理——点系统散热方式,改成“被动”——点最大处理器状态,改为90%左右就行。

...

网络机顶盒显示1903故障怎么办

分类: 精彩生活资讯 发布: roger 浏览: 日期: 2022年7月3日

电信ITV无线设置一切设置OK出现1071903错误代码,是设置错误造成的,解决方法如下:

1、首先打开电视机和机顶盒,点击遥控器中“设置”选项。
...

中控H10PLUS考勤机管理员密码破解

分类: SOFT技术专区 发布: roger 浏览: 日期: 2021年7月2日

管理员破解方式

首先看考勤机上的时间,比如显示为20:24,去掉冒号为2024
管理员密码为:(9999−2024)2=63600625(9999−2024)2=63600625
长按M/OK键,进入管理员界面,输入工号:8888,按M/OK键,输入上面的密码,即可进入管理页面
注:密码每分钟都不一样,必须在一分钟内操作完成!

笔记本电脑选择USB HDD后 总是一闪但进不去解决方法

分类: 操作系统技术 发布: roger 浏览: 日期: 2020年12月23日

开机按F1(F1)进入BIOS
1、进入Security—Secure Boot—Disabled
2、进入Startup—UEFI/Legacy Boot选项,设置为Both,下面的选项 UEFI/Legacy Boot Priority设置为UEFI First
3、点击F10(F10)选择yes,保存BIOS设置并退出即可 重启按F12选择USB就可以进入了

用JavaScript实现网站自动跳转电脑PC端与手机端不同页面

分类: 网页设计代码 发布: roger 浏览: 日期: 2020年11月23日

JS代码添加到访问页面头部或者单独设置一个页面,然后设置我们需要跳转的PC和手机端URL或者页面。

<script type="text/javascript">
function browserRedirect() {
var sUserAgent= navigator.userAgent.toLowerCase();
var bIsIpad= sUserAgent.match(/ipad/i) == "ipad";
...

实现拼图滑动验证码代码样式

分类: 网页设计代码 发布: roger 浏览: 日期: 2020年11月18日

<!DOCTYPE html> <html> <head>     <title>滑动拼图验证码</title>     <link rel="stylesheet" type="text/css" href="https://at.alicdn.com/t/font_1582902_u0zm91pv15i.css">     <style type="text/css">         .verify-slide-con{ /* 滑动拼图容器块 */             width: 360px;             padding: 10px 20px;             border: 1px solid #eee;         }         .img-con{ /* 图片容器块 */             width: 100%;             height: 200px;             display: flex;             justify-content: center;             align-items: center;             overflow: hidden;             border: 1px solid #eee;             position: relative;         }         .img-con > .slide-block{ /* 图片区域的滑块 */             top: 0;             left: 0;             position: absolute;             height: 40px;             width: 40px;             display: none;             background-repeat: no-repeat;             background-attachment: scroll;             background-size: 360px 200px;             z-index: 10;             box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4), 0 0 10px 0 rgba(90, 90, 90, 0.4);         }         .img-con > .slide-block-mask{ /* 图片区域的空缺区域 */             top: 0;             left: 0;             position: absolute;             height: 40px;             width: 40px;             display: none;             background-color: rgba(0, 0, 0, 0.4);         }         .img-con > .img{ /* 图片 */             width: 100%;             height: 100%;         }         .img-con > .loading{ /* 加载中样式 */             width: unset;             height: unset;         }         .slide-con{ /* 滑块容器 */             height: 40px;             margin: 10px 0;             position: relative;             border: 1px solid #eee;         }         .slide-con > .slide-btn{ /* 滑动按钮 */             height: 40px;             width: 40px;             position: absolute;             background: #4C98F7;             display: flex;             justify-content: center;             align-items: center;             cursor: pointer;         }         .icon-arrow-right{ /* 右箭头 */             font-size: 30px;             color: #fff;         }         .operate-con{ /* 操作容器块 */             border-top: 1px solid #eee;             height: 30px;             padding: 5px 0 0 5px;             display: flex;             align-items: center;         }         .icon-shuaxin1{ /* 刷新按钮 */             color: #777;             font-size: 20px;             cursor: pointer;         }     </style> </head> <body>     <div class="verify-slide-con"> <!-- 滑动拼图容器块 -->         <div class="img-con"> <!-- 图片容器块 -->             <img class="img"> <!-- 图片 -->             <div class="slide-block"></div> <!-- 拼图 -->             <div class="slide-block-mask"></div> <!-- 缺口 -->         </div>         <div class="slide-con"> <!-- 滑块容器 -->             <div class="slide-btn"> <!-- 滑动按钮 -->                 <i class="iconfont icon-arrow-right"></i> <!-- 图标 -->             </div>         </div>         <div class="operate-con"> <!-- 操作容器块 -->             <i id="refresh" class="iconfont icon-shuaxin1"></i> <!-- 刷新按钮 -->         </div>     </div> </body> <script type="text/javascript">     (function(){         var imgList = [ // 图片组             "http://www.sdust.edu.cn/__local/9/7A/B1/F29B84DEF72DD329997E8172ABA_664BA3EF_32466.jpg",             "http://www.sdust.edu.cn/__local/B/F3/E4/693AB931C9FFB84646970D53BFE_C506394A_4282CA.jpg",             "http://www.sdust.edu.cn/__local/F/7A/AA/E1459849AA8AB0C89854A41BD41_BF3BD857_BC0D8.jpg",             "http://www.sdust.edu.cn/__local/1/95/CB/EDC1450B8FD1B8A25FAAC726AA4_A36D4253_16C91.jpg",         ];         var imgCon = document.querySelector(".img-con"); // 图片容器元素引用         var img = document.querySelector(".img-con > .img"); // 图片元素引用         var slideBlock = document.querySelector(".img-con > .slide-block"); // 滑块元素引用         var slideBlockMask = document.querySelector(".img-con > .slide-block-mask"); // 缺口元素引用         var slideCon = document.querySelector(".slide-con"); // 滑动容器引用         var slideBtn = document.querySelector(".slide-con > .slide-btn"); // 滑块按钮引用         var refreshBtn = document.querySelector("#refresh"); // 刷新按钮引用         function randomInt(min=0, max=1) { // 生成随机数             return min + ~~((max-min)*Math.random()) // min <= random < max          }         function initSlider(){             var maxTop = imgCon.offsetHeight -                  ~~(window.getComputedStyle(slideBlock).getPropertyValue("height").replace("px","")); // 获取最大Y轴偏移距离             var maxRight = imgCon.offsetWidth -                  ~~(window.getComputedStyle(slideBlock).getPropertyValue("width").replace("px","")); // 获取最大X轴偏移距离             var randPosY = randomInt(0, maxTop); // 随机Y轴偏移             var randPosX = randomInt(60, maxRight); // 随机X轴偏移             slideBtn.onmousedown = function(e){                 slideBlock.style.display = "block"; // 显示拼图                 slideBlock.style.top=`${randPosY}px`; // 拼图Y轴偏移                 slideBlock.style["background-position"] = `-${randPosX}px -${randPosY}px`; // 指定背景图位置                 slideBlockMask.setAttribute("style", `display:block;top:${randPosY}px;left:${randPosX}px`); // 显示缺口并指定位置                 var edgeX = e.clientX; // 鼠标点击位置                 document.onmousemove = event => {                     var relativeX = event.clientX - edgeX; // 鼠标移动距离                     if(relativeX<0 || relativeX>imgCon.offsetWidth-this.offsetWidth) return void 0; // 判断是否超出滑动容器块 超出则不移动                     slideBlock.style.left = relativeX + "px"; // 移动拼图                     this.style.left =  relativeX + "px"; // 移动滑块按钮                 }                 document.onmouseup = function() {                     this.onmousemove = null; // 撤销事件                     this.onmouseup = null; // 撤销事件                     if(Math.abs(slideBlock.offsetLeft - slideBlockMask.offsetLeft)<=2) alert("验证成功"); // 偏移距离小于2则认为成功                     else alert("验证失败"); // 否则失败                     slideBlock.style.left = 0; // 拼图归位                     slideBtn.style.left =  0; // 滑块按钮归位                 };             }         }         function switchImg(){             slideBlock.style.display = "none"; // 不显示拼图             slideBlockMask.style.display = "none"; // 不显示缺口             img.classList.add("loading"); // 指定图片加载中样式             img.src="https://cdn.jsdelivr.net/gh/sentsin/layui@15d7241/dist/css/modules/layer/default/loading-2.gif"; // 加载动画             var newSrc = imgList[randomInt(0, 4)]; // 随机加载图片             var tmp = new Image(); // 隐式加载图片             tmp.src = newSrc; // 指定src             tmp.onload = function(){                 img.classList.remove("loading"); // 撤销loading                 img.src = newSrc; // 指定src 此时从缓存加载图片                 slideBlock.style["background-image"] = `url(${newSrc})`; // 拼图背景                 initSlider(); // 初始化滑块             }         }         (function(){             switchImg(); // 加载图片             refreshBtn.addEventListener("click", e => switchImg()); //  刷新按钮绑定事件         })();     })(); </script> </html>
...

CDONTS邮件组件在服务器配置

分类: 操作系统技术 发布: roger 浏览: 日期: 2020年11月11日

1、解压缩下载的文件。

2、复制文件“cdonts.dll”到系统目录下。

3、系统目录一般为:C:\windows\System32 64位系统为C:\Windows\SysWOW64。

4、最后点击开始菜单-->运行-->输入regsvr32 cdonts.dll,回车即可解决错误提示。

如果出现模块可能与您正在运行的windows版本不兼容的情况:

开始菜单输入“cmd”并右键“以管理员身份运行”或是去C盘找到CMD.EXE

...

SQL Server 2005 安装后,没有Management Studio管理工具的解决办法

分类: SOFT技术专区 发布: roger 浏览: 日期: 2020年11月7日

如果您在安装SQL Server 2005之前安装了Visual Studio .NET 2005或2008,并且在安装VS时选择了SQL Server 2005 Express,那么很不幸,SQL Server 2005安装后,您将找不到Management Studio管理工具。

要解决这个问题,可以有以下几种方法:

  1. 先安装SQL Server 2005,后安装VS。
  2. ...

Js调用asp.net后台代码

分类: 网页设计代码 发布: roger 浏览: 日期: 2020年10月27日

方法一

        1、首先建立一个按钮,在后台将调用或处理的内容写入button_click中;  

        2、在前台写一个js函数,内容为document.getElementById("btn1").click()

...
分页:[«]1[2][3][4][5][6][7][8][9][10][11][12][13][14][»]

Powered By Z-Blog 1.8 Walle Build 91204

Copyright 2008-2022 WWW.XMHJFB.COM Rights Reserved 闽ICP备16020319号