摘要:
有些情况下 比如wasm 都打包失败 这个时候就要跳过webpack打包 我这里用动态加载js方法(不要用import) 这个方法比较实用 因为很多情况下都需要DOM元素加载完再执行 var head = document.getElementsByTagName('head')[0]; var s 阅读全文
摘要:
golang 协程运行流程 package main import ( "testing" // "github.com/gwpp/tinify-go/tinify" "fmt" "time" ) func sss(){ time.Sleep(time.Second) fmt.Println("44 阅读全文
摘要:
centos软连接 设置php多版本 ln -s /usr/local/php7.3/bin/php /usr/bin/php73 又箭头说明成功了 然后运行下php73 -v 是不是就出现PHP版本了 阅读全文
摘要:
关于vue-awesome-swiper和swiper的作用 vue-awesome-swiper是提供组件化用的 swiper 也有组件 但是用不了 所以用vue-awesome-swiper代替了 swiper只提供一些交互功能 阅读全文
摘要:
javascript gsap 动画2种常用写法 import gsap from "gsap"; gsap.to(".ball", { keyframes: { "0%": { yPercent: 0, scaleX: 1, scaleY: 1 }, "7%": { yPercent: 5, sc 阅读全文
摘要:
webpack更新原理 每次改代码 除了直接改组件里面的东西 改引用的js store都会重新刷新页面 体验真心不好 阅读全文
摘要:
pixijs层级另类写法 const app = new PIXI.Application({ width: 750, height: 1206, transparent: true, forceCanvas: true }); document.body.appendChild(app.view) 阅读全文
摘要:
我用了box2dweb 和matterjs 写了多边形 碰撞 box2dweb刚体穿透率特别高 设置了子弹 也一样穿透 matterjs就很稳 所以建议选择matterjs matterjs文档也丰富 box2dweb没文档。。 阅读全文
摘要:
我只写vue3的改动 import { createApp } from 'vue' import App from './App.vue' import router from './router' console.log(router); const app = createApp(App) a 阅读全文
摘要:
vue swiper 初始化巨坑解决方案 1延迟修改属性初始化方案 <swiper class="swiper" :options="swiperOptionTop" ref="swiper1"> <swiper-slide class="slide-1" v-for='item in imgLis 阅读全文