上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 98 下一页
摘要: pixijs层级另类写法 const app = new PIXI.Application({ width: 750, height: 1206, transparent: true, forceCanvas: true }); document.body.appendChild(app.view) 阅读全文
posted @ 2022-05-11 17:04 newmiracle宇宙 阅读(113) 评论(0) 推荐(0)
摘要: 我用了box2dweb 和matterjs 写了多边形 碰撞 box2dweb刚体穿透率特别高 设置了子弹 也一样穿透 matterjs就很稳 所以建议选择matterjs matterjs文档也丰富 box2dweb没文档。。 阅读全文
posted @ 2022-05-11 11:19 newmiracle宇宙 阅读(103) 评论(0) 推荐(0)
摘要: 我只写vue3的改动 import { createApp } from 'vue' import App from './App.vue' import router from './router' console.log(router); const app = createApp(App) a 阅读全文
posted @ 2022-03-29 17:38 newmiracle宇宙 阅读(1577) 评论(0) 推荐(0)
摘要: vue swiper 初始化巨坑解决方案 1延迟修改属性初始化方案 <swiper class="swiper" :options="swiperOptionTop" ref="swiper1"> <swiper-slide class="slide-1" v-for='item in imgLis 阅读全文
posted @ 2022-03-03 11:29 newmiracle宇宙 阅读(1806) 评论(0) 推荐(0)
摘要: $sff:'#FFF'; $aa:213; .swxs#{$sff}{ color:$sff; &-csd{ color:#000; width:#{$aa}px; } } scss变量写法 阅读全文
posted @ 2022-03-03 09:21 newmiracle宇宙 阅读(204) 评论(0) 推荐(0)
摘要: nginx 代理访问原理 比方说webman 其实就是个请求 把header和body都请求出来 然后再发出去 这个地方特别要注意header 别重复了 要么webman上写 要么nginx上写 如果2个都写会报错 阅读全文
posted @ 2022-02-27 15:31 newmiracle宇宙 阅读(96) 评论(0) 推荐(0)
摘要: css mask 渐变动画另类写法 就是改变宽度做动画 里面渐变写死 html, body { margin: 0; padding: 0; } .rect { height: 10px; width: 100vw; background-image: linear-gradient(to righ 阅读全文
posted @ 2022-02-24 11:56 newmiracle宇宙 阅读(233) 评论(0) 推荐(0)
摘要: const CancelToken = axios.CancelToken; let cancel; // 这个模拟接口写个sleep2秒 可以看到效果 axios.get('/moban/aass', { cancelToken: new CancelToken(function executor 阅读全文
posted @ 2022-02-12 20:47 newmiracle宇宙 阅读(126) 评论(0) 推荐(0)
摘要: mysql数据库操作断电极端情况单机情况 mysql数据库刚存入完 就断电 这个并不影响服务端的接下来逻辑操作 然后没有及时返回客户端 客户端不知道有没有存入成功 客户端应该就是弹出超时的弹窗(网络繁忙 请用户自己查看是否操作成功 如果没有请重试) 分布式情况A数据库存入成功 B数据库存入后断电 然 阅读全文
posted @ 2022-02-12 10:40 newmiracle宇宙 阅读(98) 评论(0) 推荐(0)
摘要: php实现jwt原理 1 服务端根据key实现token 比方说base64_encode($key); 2 客户端cookie 保存token token请求到服务端验证 服务端当然根据key 来解密 base64_deencode($token); 看看获得的key对不对 ps:这个只是记录登录 阅读全文
posted @ 2022-02-10 12:15 newmiracle宇宙 阅读(168) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 98 下一页