Chef

Results 8 issues of Chef

项目地址:https://github.com/Patrick-Jun/PopRun 主要功能: (1)跑步(首屏):当前位置地图、排行榜(周榜、月榜)、运动路径、实时数据(里程、配速)、随机一言。 (2)动态圈子:打卡分享、发布分享、热门推荐、点赞评论、消息通知。 (3)活动广场:线上活动(报名、完赛条件、奖励)、跑步教程。 (4)个人中心:运动管理、动态管理、设置(通用设置、隐私设置)、勋章墙、等级称号、个人主页、资料编辑。 截图: ![image](https://user-images.githubusercontent.com/38160059/116660038-0572e780-a9c5-11eb-9d80-2bf6303a6fc9.png) ![image](https://user-images.githubusercontent.com/38160059/116660166-37844980-a9c5-11eb-8ba1-4a52210834dd.png) ![image](https://user-images.githubusercontent.com/38160059/116660181-3c48fd80-a9c5-11eb-939c-0ae5cd17aaba.png)

全选设置:autoCropWidth=99999 autoCropHeight=99999 debugger调试发现: ![image](https://github.com/xyxiao001/vue-cropper/assets/38160059/d6891bc6-99ba-4e03-9169-11a3600ab804) w=199.83909895414322 axis.x2-axis.x1 = 199.8390989541432 **发现他们仅仅相差:0.00000000000002,就导致 w > axis.x2 - axis.x1,然后就会将h修改,导致高度和宽度一致。** 源代码位置: ``` js // 手动改变截图框大小函数 changeCrop(w, h) { if (this.centerBox) { // 修复初始化时候在centerBox=true情况下 let axis =...

支持初始自动裁剪支持100%全选 #766 #656

通常情况下,截图都应初始全截,即截图区域宽高都和原图相等。 这里或许可以支持用户自定义传入容器百分比? ``` js // 截图框默认大小 // 如果为0 那么计算容器大小 默认为80% var w = cw ? cw : parseFloat(this.autoCropWidth); var h = ch ? ch : parseFloat(this.autoCropHeight); if (w === 0...

本项目是20年本人大四做的,当时技术有限,可能有一些设计问题,勿喷! 本人于2023.2.20重新整理优化了一下,现在按照文档应该能够跑起了,如果还跑不起来,请在下方回复!🤖

- [x] I have searched the [issues](https://github.com/vueComponent/ant-design-vue/issues) of this repository and believe that this is not a duplicate. ### Version 4.2.3 ### Environment windows 10, Chrome, Vue3 ### Reproduction link...