更新日志2026/06/26 增加侧边栏头像裁剪预览
最后更新于5 天前。

本次更新为左侧边栏头像更换增加裁剪预览流程。

点击侧边栏头像选择图片后,会先打开裁剪窗口,可拖动图片调整位置、使用滑块缩放,并在确认后上传裁剪后的头像。

修改源码
// 选择头像后先打开裁剪弹窗,用户确认后才上传裁剪结果。
openCropModal(file);
fileInput.value = '';
return;

// Pointer dragging adjusts the crop source before the cropped blob is uploaded.
crop.stage.addEventListener('pointerdown', function(event) {
	if (!cropState || pending) return;
	event.preventDefault();
	cropState.dragging = true;
	cropState.startX = event.clientX;
	cropState.startY = event.clientY;
	cropState.startOffsetX = cropState.offsetX;
	cropState.startOffsetY = cropState.offsetY;
	crop.stage.setPointerCapture(event.pointerId);
});

function confirmCropUpload() {
	if (!cropState || pending) return;
	var canvas = drawCropCanvas(512);
	canvas.toBlob(function(blob) {
		uploadAvatarBlob(blob);
	}, 'image/jpeg', 0.9);
}
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇