
web前端
文章平均质量分 50
jinhuazhe2013
Dream, Dare, Do!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Electronjs+Vue如何开发PC桌面客户端(Windows,Mac,Linux)
electronjs官网 https://www.electronjs.org/zh/Electron开发PC桌面客户端的技术选型非常适合已经有web前端开发人员的团队。能够很丝滑的过渡。原创 2024-12-20 11:24:49 · 1403 阅读 · 0 评论 -
如何解决vscode powershell乱码
在 Visual Studio Code 中使用 PowerShell 时出现乱码,通常是由于终端编码设置或字体不匹配导致的。PowerShell 默认的输出编码可能与终端编码不一致。通过以上方法,通常可以解决 VSCode 中 PowerShell 的乱码问题。确保你使用的是最新版本的 PowerShell,因为旧版本可能存在编码问题。确保 VSCode 的终端编码与 PowerShell 的编码一致。如果乱码是因为字体不支持特定字符(如中文),可以尝试更换终端的字体。方法一:设置为 UTF-8 编码。原创 2024-12-18 17:40:31 · 1129 阅读 · 0 评论 -
图片识别-合成-图片滤镜等
支持web端。支持数百种滤镜https://img.ly/docs/pesdk/https://img.ly/docs/pesdk/web/introduction/getting_started/demo: https://img.ly/photo-sdk/demo图像特效-提供图像风格迁移等多种图像特效类服务https://open.youtu.qq.com/#/open/experience/picfilterhttps://cloud.tencent.com/product/Augm原创 2021-10-15 10:13:22 · 736 阅读 · 0 评论 -
图像处理网站
图像处理网站梵高作品风格https://deepart.io/提高图片分辨率https://letsenhance.io/模板、拼接、去背景、滤镜https://pixlr.com/################ 提供api ###############第三方抠图,修图,卡通滤镜–提供apihttps://www.cutout.pro/去背景–提供apihttps://www.slazzer.com/https://removal.ai/https://clippingmagi原创 2021-10-15 10:11:57 · 2623 阅读 · 0 评论 -
javascript canvas webgl css实现滤镜算法
javascript canvas webgl css实现滤镜算法instagram风格滤镜-前端组件-canvashttps://github.com/girliemac/filterous-2instagram风格滤镜-前端组件-csshttps://picturepan2.github.io/instagram.css/这里有很多种滤镜的具体算法和c语言实现。前端要做的话也可以参考https://www.kancloud.cn/trent/hotoimagefilter/102原创 2021-10-15 10:10:41 · 469 阅读 · 1 评论 -
【转】javascript实现矩阵乘法
虽然存在许多类型的矩阵,但我们感兴趣的是三维变换矩阵。这种矩阵由一个4x4方阵,共16个值组成。在JavaScript中,可以很方便的用数组表示矩阵。比如典型的单位矩阵。单位阵乘上一个点或者矩阵, 其结果保持不变。var identityMatrix = [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1];说到乘法,这种运算用于矩阵是什么样的呢?最简单的例子是矩阵乘一个点。你可能注意到,三维空间中的点和一个4x4矩阵并不匹配,为此我们转载 2021-10-14 17:16:45 · 1889 阅读 · 0 评论 -
【转】如何解决超时导致的nginx 404报错?
nginx的默认超时是60s, 需要修改配置如下:proxy_read_timeout 120s;Put that inside your proxy section.The default is apparently 60s so try doubling and go from there.Not too confident about it but i had something similar with a timeout in mysql today on a server at wor转载 2021-06-30 17:24:43 · 2112 阅读 · 0 评论 -
[转载]User Agent Strings
User Agent StringsPublished on Friday, February 28, 2014A browser’s user agent string (UA) helps identify which browser is being used, what version, and on which operating system. When feature detection APIs are not available, use the UA to customize beh转载 2021-06-07 10:10:35 · 618 阅读 · 0 评论 -
npm镜像地址
mirror-config-china为中国内地的Node.js开发者准备的镜像配置,大大提高node模块安装速度详情: https://www.npmjs.com/package/mirror-config-china安装npm i -g mirror-config-china --registry=https://registry.npm.taobao.org# 检查是否安装成功 npm config list淘宝 NPM 镜像https://developer.aliyun.com/原创 2021-01-28 16:01:35 · 756 阅读 · 1 评论 -
curl发起需要密码验证的GET请求
两种方式第一种curl -u username:password -X GET http://api.example.com第二种curl -X GET http://username:[email protected]参考:https://stackoverflow.com/questions/2594880/using-curl-with-a-username-and-password原创 2021-01-07 16:53:43 · 1401 阅读 · 0 评论 -
npm install fails on node-gyp rebuild with ```gyp: No Xcode or CLT version detected!```
npm install fails on node-gyp rebuild with gyp: No Xcode or CLT version detected!$ npm install Fri Mar 6 17:22:40 2020> [email protected] install /Users/synapse/Documents/synapsefi-dev-ui/node_modules/watchpack/node_modules/fsevents> node转载 2020-07-25 15:13:37 · 264 阅读 · 0 评论 -
vue js代码编辑插件(vue-prism-editor)
示例:https://prism-editor.netlify.com/插件地址:https://github.com/koca/vue-prism-editor安装npm install vue-prism-editororyarn add vue-prism-editor使用姿势<template> <prism-editor :code="code" ...原创 2020-01-07 10:28:16 · 6269 阅读 · 3 评论 -
How to Use Prism in a Vue Project(代码高亮显示插件)
Prism is a lightweight, robust, elegant syntax highlighting library.???? StepsCreate a Vue project and install Prism and Vue Prism Component.npm i -g @vue/clivue create vue-democd vue-demonpm i p...转载 2020-01-06 20:25:37 · 888 阅读 · 0 评论 -
Vue笔记:使用node开发vue入门实例
Vue笔记:使用node开发vue入门实例https://www.cnblogs.com/xifengxiaoma/p/9494068.html原创 2019-07-09 13:29:00 · 419 阅读 · 1 评论 -
jQuery检测滚动条(scroll)是否到达底部
一、jQuery检测浏览器window滚动条到达底部jQuery获取位置和尺寸相关函数: $(document).height() 获取整个页面的高度 $(window).height() 获取当前也就是浏览器所能看到的页面的那部分的高度。这个大小在你缩放浏览器窗口大小时会改变,与document是不一样的 scrollTop() 获取匹配元素相对滚动条顶部的偏移。 scr转载 2018-02-06 10:04:32 · 4534 阅读 · 0 评论 -
Why I can't use non-string key in the myMap[myKey] expression? And what to do now?
Why I can’t use non-string key in the myMap[myKey] expression? And what to do now?The "hash" type of the FreeMarker Template Language (FTL) is not the same as Java's Map. FTL's hash is an associat转载 2018-01-25 15:17:58 · 693 阅读 · 0 评论 -
【js类库AngularJs】解决angular+springmvc的post提交问题
AngularJS诞生于2009年,由Misko Hevery 等人创建,后为Google所收购。是一款优秀的前端JS框架,已经被用于Google的多款产品当中。AngularJS有着诸多特性,最为核心的 是:MVVM、模块化、自动化双向数据绑定、语义化标签、依赖注入、等等。参考资料:angularjs中文网:http://www.apjs.net/angularjs官网:http://angula原创 2017-01-01 13:52:47 · 1173 阅读 · 1 评论 -
手机QQ访问时,html页面在QQ中自定义预览和自定义分享
有一天,产品说要做个自定义预览和分享功能,于是很快在微信上实现了,可是不知道在QQ上怎么实现,查看了很多网站,最后才找到了解决方案,于是想和大家分享一下。原创 2016-03-08 23:50:01 · 6491 阅读 · 4 评论 -
【js类库Raphaël】基于svg中的path动态绘制40%表示的环型图
一、可供参考的文档资料。raphaeljs官网:http://raphaeljs.com/w3c关于path的介绍:http://www.w3.org/TR/2003/REC-SVG11-20030114/paths.htmlmdn关于path的介绍(英文版):https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths...原创 2016-03-08 23:53:17 · 2270 阅读 · 0 评论