指尖上的记忆指尖上的记忆
首页
  • 基础
  • Laravel框架
  • Symfony框架
  • 基础
  • Gin框架
  • 基础
  • Spring框架
  • 命令
  • Nginx
  • Ai
  • Deploy
  • Docker
  • K8s
  • Micro
  • RabbitMQ
  • Mysql
  • PostgreSsql
  • Redis
  • MongoDb
  • Html
  • Js
  • 前端
  • 后端
  • Git
  • 知识扫盲
  • Golang
🌟 gitHub
首页
  • 基础
  • Laravel框架
  • Symfony框架
  • 基础
  • Gin框架
  • 基础
  • Spring框架
  • 命令
  • Nginx
  • Ai
  • Deploy
  • Docker
  • K8s
  • Micro
  • RabbitMQ
  • Mysql
  • PostgreSsql
  • Redis
  • MongoDb
  • Html
  • Js
  • 前端
  • 后端
  • Git
  • 知识扫盲
  • Golang
🌟 gitHub

1.在线图片格式转换工具 [链接] https://www.aconvert.com/cn/image/png-to-svg/

2.在线颜色反转工具 [链接]
https://fontmeme.com/zh/invert-colors/

3.在线bcrypt加密数据 [链接]
https://bcrypt.online/

4.在线贝塞尔曲线计算( cubic-bezier ) [链接] https://cubic-bezier.com/

5.好用的富文本编辑器 TinyMCE [链接] https://www.tiny.cloud/

补充: https://www.tiny.cloud/docs/tinymce/6/creating-a-plugin/?_ga=2.45605092.1100574337.1686531043-87378848.1686272359#example-using-external_plugins //用户自定义plugins或者收费plugins的配置

https://www.tiny.cloud/docs/tinymce/6/vue-ref/#form-input-bindings-v-model //vue绑定不生效问题,主要是vue版本的问题 vue2和vue3不通用

https://www.tiny.cloud/docs/tinymce/6/toolbar-configuration-options/ //toolbar设置

自定义图片上传:

上传图片完成以后报:Error: Errors: Failed path: (data > src) Could not find valid 错误: 主要是tinyMCE版本的问题 6/5不一样
v6:https://www.tiny.cloud/docs/tinymce/6/upload-images/#example-using-images_upload_handler
images_upload_handler: async (blobInfo, success) => new Promise(async (resolve, reject) => {
  const file = blobInfo.blob()
  const {url} = await this.uploadFile(file, 'image')
  console.log(url)
  resolve(url);
})


v5:https://www.tiny.cloud/docs/configure/file-image-upload/#images_upload_handler
images_upload_handler: async (blobInfo, success) => {
const file = blobInfo.blob()
const { url } = await this.uploadFile(file, 'image')
console.log(url)
success(url)
}

自定义图片上传的时候,图片路径会被转换为相对路径的问题 ,这个问题只需要在初始化是添加一个参数即可解决  convert_urls: false

6.在线颜色定义 [链接] https://convertingcolors.com/rgb-color-0_0_0.html?search=RGB(0,%200,%200)

7.谷歌站点验证 [链接] https://www.google.com/recaptcha/about/

8.在线生成 ics 日历文件 [链接] https://ical.marudot.com/

各平台对应日历格式参数: https://github.com/InteractionDesignFoundation/add-event-to-calendar-docs/tree/main/services

9.icon设计 [链接] https://www.iconfinder.com/

10.php自动发布工具deployer [链接] https://deployer.org/