-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: 图片放大限制优化 fix: 个别机型中图片无法预览问题
- Loading branch information
Showing
13 changed files
with
157 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
import React, { SVGProps } from 'react'; | ||
|
||
export function EosIconsBubbleLoading(props: SVGProps<SVGSVGElement>) { | ||
return ( | ||
<svg width="1em" height="1em" viewBox="0 0 24 24" {...props}> | ||
<circle cx="12" cy="2" r="0" fill="currentColor"> | ||
<animate | ||
attributeName="r" | ||
begin="0" | ||
calcMode="spline" | ||
dur="1s" | ||
keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" | ||
repeatCount="indefinite" | ||
values="0;2;0;0" | ||
/> | ||
</circle> | ||
<circle cx="12" cy="2" r="0" fill="currentColor" transform="rotate(45 12 12)"> | ||
<animate | ||
attributeName="r" | ||
begin="0.125s" | ||
calcMode="spline" | ||
dur="1s" | ||
keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" | ||
repeatCount="indefinite" | ||
values="0;2;0;0" | ||
/> | ||
</circle> | ||
<circle cx="12" cy="2" r="0" fill="currentColor" transform="rotate(90 12 12)"> | ||
<animate | ||
attributeName="r" | ||
begin="0.25s" | ||
calcMode="spline" | ||
dur="1s" | ||
keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" | ||
repeatCount="indefinite" | ||
values="0;2;0;0" | ||
/> | ||
</circle> | ||
<circle cx="12" cy="2" r="0" fill="currentColor" transform="rotate(135 12 12)"> | ||
<animate | ||
attributeName="r" | ||
begin="0.375s" | ||
calcMode="spline" | ||
dur="1s" | ||
keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" | ||
repeatCount="indefinite" | ||
values="0;2;0;0" | ||
/> | ||
</circle> | ||
<circle cx="12" cy="2" r="0" fill="currentColor" transform="rotate(180 12 12)"> | ||
<animate | ||
attributeName="r" | ||
begin="0.5s" | ||
calcMode="spline" | ||
dur="1s" | ||
keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" | ||
repeatCount="indefinite" | ||
values="0;2;0;0" | ||
/> | ||
</circle> | ||
<circle cx="12" cy="2" r="0" fill="currentColor" transform="rotate(225 12 12)"> | ||
<animate | ||
attributeName="r" | ||
begin="0.625s" | ||
calcMode="spline" | ||
dur="1s" | ||
keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" | ||
repeatCount="indefinite" | ||
values="0;2;0;0" | ||
/> | ||
</circle> | ||
<circle cx="12" cy="2" r="0" fill="currentColor" transform="rotate(270 12 12)"> | ||
<animate | ||
attributeName="r" | ||
begin="0.75s" | ||
calcMode="spline" | ||
dur="1s" | ||
keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" | ||
repeatCount="indefinite" | ||
values="0;2;0;0" | ||
/> | ||
</circle> | ||
<circle cx="12" cy="2" r="0" fill="currentColor" transform="rotate(315 12 12)"> | ||
<animate | ||
attributeName="r" | ||
begin="0.875s" | ||
calcMode="spline" | ||
dur="1s" | ||
keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" | ||
repeatCount="indefinite" | ||
values="0;2;0;0" | ||
/> | ||
</circle> | ||
</svg> | ||
); | ||
} | ||
export default EosIconsBubbleLoading; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
0675d2a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs: