mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
abf215a982
* init recommend block * init design pages * home frames * add background banner * hello, Hitu makes the animation * add media query * add images * update types * add declare * preload support * update ignore * additional ignore site Home lint * update ignore * add hover effect * adjust alt of bannber * adjust lang & card shadow * fix typo * adjust desc * hitu in english * article add link * Certainty is hitu * Meaning Hitu * Growth with Hitu * Natural Hitu * slow down of Natural * adjust speed of icons * New Meaning animation * adjust animation duration * update card link * update link * values doc * replace images * faster Growth * update values * fix lint * all slow down * adjust padding * update icons * adjust margin * update images * adjust montion * adjust by designer * update pages * update design prod * update articles * update site style * update doc * update images * update style * lint fix * adjust liner color * github text color update * adjust margin of title * mobile design * update design sub card * update style * less lint * update images * design card auto height * update img * update logo transition * adjust card style * adjust style to fix 184 * adjust nav style * category it * slow down of logo * update style * hide video link * hitu article * use img of hitu * update docs * style lint * update Hitu layout doc * update images * speed up logo * update link * clean up * clean up * update doc * adjust doc * update images
102 lines
2.1 KiB
TypeScript
102 lines
2.1 KiB
TypeScript
import * as React from 'react';
|
|
import Hitu from '@ant-design/hitu';
|
|
import { Shape, FrameInfo } from '@ant-design/hitu/lib/interface';
|
|
import InteractiveIcon from './InteractiveIcon';
|
|
|
|
function Arrow() {
|
|
return (
|
|
<path
|
|
fill="#FFB200"
|
|
d="M81.8274462,0.126276923 L81.8274462,19.3203692 L75.7661538,19.3203692 L75.7666925,9.85015287 C58.6630313,32.8286615 33.5224908,52.4154208 0.389745066,68.6317684 L1.32871492e-12,68.8209231 L0.00109197241,62.0542198 C30.7061773,46.7059243 54.0774442,28.4225755 70.1546362,7.22315635 L70.7125099,6.48245893 L70.931,6.18727692 L62.6333538,6.18756923 L62.6333538,0.126276923 L81.8274462,0.126276923 Z"
|
|
/>
|
|
);
|
|
}
|
|
|
|
Arrow.width = 84;
|
|
Arrow.height = 70;
|
|
|
|
function Rect() {
|
|
return <rect x="0" y="0" width="10" height="10" fill="#FFD75A" />;
|
|
}
|
|
|
|
Rect.width = 10;
|
|
Rect.height = 10;
|
|
|
|
const rectShared: Partial<FrameInfo> = {
|
|
originX: 0,
|
|
originY: 1,
|
|
y: 98,
|
|
};
|
|
|
|
const rectDistance = Rect.width + 9;
|
|
function getRectFrames(scaleY: number, index: number): FrameInfo[] {
|
|
const delay = index * 3;
|
|
|
|
return [
|
|
{
|
|
frame: 0,
|
|
scaleY,
|
|
...rectShared,
|
|
x: 18 + rectDistance * index,
|
|
cubic: Hitu.CUBIC_EASE,
|
|
},
|
|
{
|
|
frame: 1 + delay,
|
|
scaleY: 0,
|
|
cubic: Hitu.CUBIC_EASE,
|
|
},
|
|
{
|
|
frame: 30 + delay,
|
|
scaleY: scaleY * 1.05,
|
|
},
|
|
{
|
|
frame: 40 + delay,
|
|
scaleY: scaleY * 0.95,
|
|
},
|
|
{
|
|
frame: 50 + delay,
|
|
scaleY,
|
|
},
|
|
];
|
|
}
|
|
|
|
const shapes: Shape[] = [
|
|
{
|
|
type: 'shape',
|
|
source: Arrow,
|
|
frames: [
|
|
{
|
|
frame: 0,
|
|
originX: 0,
|
|
originY: 0,
|
|
x: 20,
|
|
y: 12,
|
|
opacity: 1,
|
|
cubic: Hitu.CUBIC_EASE,
|
|
},
|
|
{
|
|
frame: 1,
|
|
y: 17,
|
|
opacity: 0,
|
|
},
|
|
{
|
|
frame: 30,
|
|
y: 12,
|
|
opacity: 1,
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
[1.2, 2.1, 3.1, 4.5, 6].forEach((scaleY, index) => {
|
|
shapes.push({
|
|
type: 'shape',
|
|
source: Rect,
|
|
frames: getRectFrames(scaleY, index),
|
|
});
|
|
});
|
|
|
|
export default function Meaningful() {
|
|
return <InteractiveIcon shapes={shapes} />;
|
|
}
|