Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit29e222d

Browse files
committed
fixup! add animation to text area on submit
1 parentf0a045e commit29e222d

File tree

1 file changed

+14
-42
lines changed

1 file changed

+14
-42
lines changed

‎site/src/modules/tasks/TaskPrompt/TaskPrompt.tsx‎

Lines changed: 14 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -485,56 +485,28 @@ const PromptTextarea: FC<PromptTextareaProps> = ({
485485
)}
486486
<style>{`
487487
@keyframes caretScan {
488-
0%, 100% {
488+
0% {
489489
left: 0%;
490-
top: 10%;
491490
}
492-
10% {
493-
left: 70%;
494-
top: 10%;
495-
}
496-
20% {
497-
left: 30%;
498-
top: 30%;
499-
}
500-
30% {
501-
left: 90%;
502-
top: 20%;
503-
}
504-
40% {
505-
left: 20%;
506-
top: 50%;
507-
}
508-
50% {
509-
left: 80%;
510-
top: 60%;
511-
}
512-
60% {
513-
left: 40%;
514-
top: 70%;
515-
}
516-
70% {
517-
left: 60%;
518-
top: 40%;
519-
}
520-
80% {
521-
left: 10%;
522-
top: 80%;
523-
}
524-
90% {
525-
left: 50%;
526-
top: 90%;
491+
100% {
492+
left: 100%;
527493
}
528494
}
529495
530496
.caret-scanner {
531497
position: absolute;
532-
width: 12px;
533-
height: 20px;
534-
background-color: rgba(99, 102, 241, 0.5);
535-
border: 1px solid rgb(99, 102, 241);
498+
width: 2px;
499+
height: 100%;
500+
top: 0;
501+
background-color: rgba(0, 255, 0, 0.8);
502+
border: none;
536503
animation: caretScan 3s ease-in-out infinite;
537-
border-radius: 2px;
504+
border-radius: 1px;
505+
box-shadow:
506+
-10px 0 10px rgba(0, 255, 0, 0.8),
507+
-20px 0 20px rgba(0, 255, 0, 0.6),
508+
-30px 0 30px rgba(0, 255, 0, 0.4),
509+
-40px 0 40px rgba(0, 255, 0, 0.2);
538510
}
539511
`}</style>
540512
</div>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp