소스 검색

add modal open animation

AykutSarac 3 년 전
부모
커밋
279d9860cc
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. 7 1
      src/components/Modal/styles.tsx

+ 7 - 1
src/components/Modal/styles.tsx

@@ -1,4 +1,9 @@
-import styled from "styled-components";
+import styled, { keyframes } from "styled-components";
+
+const appearAnimation = keyframes`
+  from { transform: scale(0.6); opacity: 0; }
+  to { transform: scale(1); opacity: 1; };
+`;
 
 
 export const ModalWrapper = styled.div<{ visible: boolean }>`
 export const ModalWrapper = styled.div<{ visible: boolean }>`
   position: fixed;
   position: fixed;
@@ -19,6 +24,7 @@ export const ModalWrapper = styled.div<{ visible: boolean }>`
 
 
 export const ModalInnerWrapper = styled.div`
 export const ModalInnerWrapper = styled.div`
   min-width: 40vw;
   min-width: 40vw;
+  animation: ${appearAnimation} 220ms ease-in-out;
 `;
 `;
 
 
 export const Title = styled.h2`
 export const Title = styled.h2`