전체 글

[국문]삶이 곧 삶이다.살아 있음과 살아냄, 그것이 곧 삶의 가치다. [영문]Life is life itself.To live and to endure — that is the true value of life. [한문]生卽是生 (생즉시생)
시각 (Vision)주변 조명 밝기를 화면과 비슷하게 맞추기마우스나 손가락으로 라인 따라가기청각 (Hearing)소리 내어 따라 읽기 (시각+청각 동시 자극)촉각 (Touch)중요한 내용은 직접 메모·타이핑하기후각 (Smell)특정 향(아로마, 디퓨저)을 독서 전용 향으로 지정미각 (Taste)물 자주 마시고, 견과류 같은 뇌 간식 활용
LACA = Learning → Action → Consideration → Application 1. Learning (학습)책, 강의, 자료 등에서 지식·정보를 습득하는 단계2. Action (실천)배운 것을 문제 풀이·연습·프로젝트로 직접 실행하는 단계3. Consideration (고찰)실천의 과정을 돌아보고, 부족한 점·잘된 점을 분석하는 단계4. Application (응용)정리된 지식과 경험을 새로운 상황·문제에 적용하여 확장하는 단계
box-shadow: none;&:before { display: none;}
// 스와이퍼 클래스.swiper { width: 100%; height: 100%; padding: 16px 0;}// 슬라이드 클래스.swiper-slide { transition: all 0.3s ease;}// 활성화(정면) 슬라이드 클래스.swiper-slide-active { transform: scale(1) !important; z-index: 10;}// 이전,다음 슬라이드 클래스 .swiper-slide-prev, .swiper-slide-next { transform: scale(0.9) !important; opacity: 0.7;}
box-shadow: 0 0 10px 0 ${({ theme }) => alpha(theme.palette.primary.main, 0.3)};
import { useScroll } from 'framer-motion';import { useState, useEffect } from 'react';// 블로그용 스크롤 감지 훅const ExampleComponent = () => { const { scrollY } = useScroll(); const [isScrolling, setIsScrolling] = useState(false); useEffect(() => { const unsubscribe = scrollY.on("change", () => { setIsScrolling(true); setTimeout(() => setIsScrolling(false), 150); }); return unsubsc..
async function handleDownload() { // 요소 선택 const card = document.querySelector(".className") as HTMLElement; // 요소가 없으면 종료 if (!card) return; // 요소를 캔버스로 변환 const canvas = await html2canvas(card, { scale: 2, backgroundColor: "#ffffff", logging: false, }); // 이미지 데이터 추출 const imageData = canvas.toDataURL("image/png").split(",")[1]; // 파일명 설정 const f..
순코딩
순코딩