摘要:
感谢 https://www.runoob.com/css/css-attribute-selectors.html 的底部评论 https://www.runoob.com/cssref/css-selectors.html 虽然一直有用到属性选择器,但是缺乏全面的了解,都是用到了就百度,看到一个 阅读全文
摘要:
使用elementui 要求el-image组件的图片都在底部有一定的渐变透明效果,类似下图 主要用到了mask-image和渐变linear-gradient 参考链接 https://developer.mozilla.org/zh-CN/docs/Web/CSS/mask-image http 阅读全文
摘要:
百度以及时AI帮助说的配置方式都大差不差,但是我的总是报错,意思就是变量找不到,报错如下 For a guide and recipes on how to configure / customize this project,<br> 然后AI和文章写的vue.config.js的配置内容基本如下 阅读全文
摘要:
一开始用的自写html,然后转为pdf,但是这种方式很多css都不支持,不能完全达到效果,然后尝试使用wkhtmltopdf, 发现此方法貌似不能将vue项目的网页保存为pdf,可能是因为有跳转,不过也在此记录一下,目前还在学习如何使用无头浏览器实现此功能. 我的测试环境是win10,首先要安装wk 阅读全文
摘要:
// 指定要添加的文件和已有的压缩包名称 $fileToAdd = public_path().'pdffile/file1.txt'; // 要添加的文件 $zipFileName = public_path().'pdfzip/archive.zip'; // 已有的压缩包名称 // 创建一个新 阅读全文
摘要:
目前用的是tp6框架 // 指定要压缩的文件和压缩包的名称 $filesToZip = [public_path().'pdffile/生物样本库-原件.pdf']; // 要压缩的文件列表 $zipFileName = public_path().'pdfzip/archive.zip'; // 阅读全文
摘要:
function num2alpha($number) { $result = ''; while ($number > 0) { $number--; // Adjust for 0-indexing $result = chr($number % 26 + 65) . $result; // C 阅读全文
摘要:
用的框架是yinghuo,上传用了封装的上传 <template> <view class="container"> <jp-signature ref="signatureRef" :openSmooth="true"></jp-signature> <view class="dis-flex m 阅读全文
摘要:
大概原理就是 写一个div,宽高同视口,然后固定定位,层级高低看需要 然后使用pointer-events:none; pointer-events CSS 属性指定在什么情况下 (如果有) 某个特定的图形元素可以成为鼠标事件的 target none 元素永远不会成为鼠标事件的target。但是, 阅读全文
摘要:
搬自自己的51cto博客,不想用51cto了 我用的linux的宝塔面板 代码是php 流程 1.创建秘钥 linux创建rsa密钥对(创建的是www用户的秘钥) sudo -Hu www ssh-keygen -t rsa 运行之后会让你填具体路径,可以写/home/www/.ssh/id_rsa 阅读全文