上一页 1 2 3 4 5 6 7 8 9 10 ··· 97 下一页
摘要: PHP list输出key value的方法 <?php $ss=array(); $ss['xx']=3; $ss['yy']=4; list($xx,$yy)=array_values($ss); print_r($xx); ?> 阅读全文
posted @ 2022-07-28 21:03 newmiracle宇宙 阅读(121) 评论(0) 推荐(0) 编辑
摘要: PHP创建临时cookie的方法 cookie('aaaaaaaa', 'xxxxxxxxxxxx', ''); 不设置时间就可以了 接下来自己实现session cookie都是服务端创建 返回到浏览器保存的 然后浏览器每次请求都带这个cookie 服务端可以用redis 一临时cookie为ke 阅读全文
posted @ 2022-07-17 16:31 newmiracle宇宙 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 给别的域名添加cookie的方法 自己弄个本地服务器 然后设置顶级域名对应的二级域名 就行了 二级域名可以设置顶级域名的cookie 阅读全文
posted @ 2022-07-16 13:55 newmiracle宇宙 阅读(381) 评论(0) 推荐(0) 编辑
摘要: pixijs mask 注意的问题 黑色 透明都不是显示的 其他颜色都是显示的区域 阅读全文
posted @ 2022-07-05 13:58 newmiracle宇宙 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 百里守约100%瞬狙 from pykeyboard import PyKeyboard import time k = PyKeyboard() k.press_key(k.space) k.release_key(k.space) time.sleep(0.5); k.press_key('w' 阅读全文
posted @ 2022-06-15 00:29 newmiracle宇宙 阅读(147) 评论(0) 推荐(0) 编辑
摘要: import os import sys from PIL import Image from PIL import ImageDraw import keyboard import pyautogui import time import math import pyautogui as pag 阅读全文
posted @ 2022-06-13 19:35 newmiracle宇宙 阅读(46) 评论(0) 推荐(0) 编辑
摘要: vue2 jsx简单例子 <script> export default { name: "swipermoban", data() { return {}; }, render(h) { console.log(h); return (<div>1111111</div>); }, }; </sc 阅读全文
posted @ 2022-06-04 10:50 newmiracle宇宙 阅读(120) 评论(0) 推荐(0) 编辑
摘要: vue 动态渲染自定义组件的方法 用v-if 最简单 如果有事件 大不了多写几个 <div v-tous="ss" v-if="0"></div> <div v-if="1"></div> 阅读全文
posted @ 2022-05-31 17:31 newmiracle宇宙 阅读(66) 评论(0) 推荐(0) 编辑
摘要: webpack 设置全局访问js对象的方法 比方说pixi import $ from 'jquery' import * as PIXI from 'pixi.js' if (process.env.NODE_ENV == "development") { window.PIXI = PIXI; 阅读全文
posted @ 2022-05-30 09:11 newmiracle宇宙 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 目前唯一不足就是不能动态修改shader。。。 1创建地面 const gravity = new b2Vec2(0, 10); world = new b2World(gravity); const bd_ground = new b2BodyDef(); const ground = world 阅读全文
posted @ 2022-05-23 09:12 newmiracle宇宙 阅读(106) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 97 下一页