上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 33 下一页
摘要: .iframe { width: 70%; height: 80%; top: 50%; left: 50%; transform: translate(-50%, -50%); position: fixed; z-index: 999; display: none; } 阅读全文
posted @ 2020-06-29 15:56 琥珀君 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1,box-sizing:border-box; 属性 div.container { width:30em; border:1em solid green; } div.box { box-sizing:border-box; -moz-box-sizing:border-box; /* Fire 阅读全文
posted @ 2020-06-29 15:21 琥珀君 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 1,用jpg png 写法: <link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon.png" class="keep"> 通常的写法: <link rel="shortcut icon" href="im 阅读全文
posted @ 2020-06-29 14:53 琥珀君 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 去掉页面滚动条: overflow: hidden; body, html { width: 100%; height: 100%; overflow: hidden; } 禁止页面双击缩放大小: <!-- 禁止双击缩放 --> <meta content="width=device-width, 阅读全文
posted @ 2020-06-27 16:50 琥珀君 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 1,谷歌浏览器禁用视频自动播放,原因是有声音 解决办法: video增加muted属性 增加这个muted属性可使视频自动播放 同时也屏蔽掉了声音 <video class="pic-img" muted loop="loop" autoplay="autoplay" src="./videos/i 阅读全文
posted @ 2020-06-27 16:19 琥珀君 阅读(680) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-06-17 15:34 琥珀君 阅读(8) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-06-11 14:48 琥珀君 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-06-05 16:12 琥珀君 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-06-05 14:00 琥珀君 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 新建一个reg文件,内容如下: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Sublime3] @="Sublime3 Protocol" "URL Protocol"="" [HKEY_CLASSES_ROOT\Sublime3\ 阅读全文
posted @ 2020-06-04 16:58 琥珀君 阅读(187) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-05-30 12:20 琥珀君 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 远程thinkphp代码: 更新漏洞后代码: // 获取控制器名 $controller = strip_tags($result[1] ?: $config['default_controller']); if (!preg_match('/^[A-Za-z](\w)*$/', $controll 阅读全文
posted @ 2020-05-28 14:16 琥珀君 阅读(81) 评论(0) 推荐(0) 编辑
摘要: css 部分: .music { width: 5%; height: 6%; bottom: 3%; right: 2%; background-image: url("public/imgs/ui/musicN.png"); } .music.active { background-image: 阅读全文
posted @ 2020-05-27 16:18 琥珀君 阅读(303) 评论(0) 推荐(0) 编辑
摘要: html: <div class="homeWxq" onclick="openWxq(this)"></div> css: .homeWxq{ position: absolute; width: 19.5%; height: 35.6%; top: 50%; left: 40.1%; trans 阅读全文
posted @ 2020-05-27 16:12 琥珀君 阅读(142) 评论(0) 推荐(0) 编辑
摘要: $('<div class="close"></div>') .css({ "width":"10vh", "height":"10vh", "top":"50%", "right":"0%", "transform": "translate(0, -50%)", "z-index":9999, & 阅读全文
posted @ 2020-05-27 16:04 琥珀君 阅读(488) 评论(0) 推荐(0) 编辑
摘要: // 6 9 0 10 8 // this.body2.model.model.meshInstances[22].material.emissive = new pc.Color(255, 0, 0); // 替换材质 mod.body.model.model.meshInstances[6].m 阅读全文
posted @ 2020-05-24 12:45 琥珀君 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 1,彻底删除文件 shift + delete 2, 阅读全文
posted @ 2020-05-14 18:17 琥珀君 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 按顺序 延时启动程序:@echo off ping localhost -n 5 >null start C:\MyProgram\Sublime3\sublime_text.exe ping localhost -n 10 >null start "" "C:\Program Files\Mozi 阅读全文
posted @ 2020-05-14 11:47 琥珀君 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 页面自动刷新js版 <script language="JavaScript"> function myrefresh() { window.location.reload(); } setTimeout('myrefresh()',1000); //指定1秒刷新一次 </script> 如果想关闭 阅读全文
posted @ 2020-05-12 20:43 琥珀君 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-08 21:03 琥珀君 阅读(134) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 33 下一页