摘要:
Uncaught DOMException: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported. html2canvas,如果html中有image,需要转base64 阅读全文
摘要:
利用form表单reset方法清空 阅读全文
摘要:
const base64ToBlob = (base64Data: string, contentType: string) => { const byteCharacters = atob(base64Data) const byteArrays = [] for (let offset = 0; 阅读全文
摘要:
解决:brew install pngquant 然后 重新拉依赖 or 更新 image-webpack-loader 包 (不然会报 找不到.....png 图片) 阅读全文
摘要:
document.querySelector('a').onclick = (event) => { event = event || window.event event.preventDefault(); event.returnValue = false; } 阅读全文
摘要:
利用 transform-origin: left top ,以左上角为基点缩放。 position: absolute; right: -1px; top: -8px; height: 28px; padding: 0 8px; background: #BBBBBB; border-radius 阅读全文
摘要:
const setPageStyle = (pageStyle: { [key: string]: string|number }) => { Taro.setPageStyle({ style: pageStyle }) } setPageStyle({ // overflow: 'hidden' 阅读全文
摘要:
vue2中 原生css >>> .el-card__header saas\scss ::v-deep .el-card__header less /deep/ .el-card__header vue3中 :deep() { //styles } ::deep() { //styles } 阅读全文
摘要:
> running pre-commit hook: lint-staged'lint-staged' is not recognized as an internal or external command,operable program or batch file. pre-commit ho 阅读全文
摘要:
IOS默认播放大屏播放,安卓播放可以同时播放多个,因为IOS默认是大屏播放所以不存在同时播放多个视频的现象。需求1、安卓一次播放一个视频,播放一个其中一个停止播放。 const videoList = document.getElementsByTagName("video"); const vid 阅读全文