import { Box, Stack, Image, Text, Flex, SimpleGrid } from '@chakra-ui/react' import { colors } from '../colors'; import { useEffect, useRef } from 'react'; import { motion, useInView, useAnimation } from 'framer-motion' // Create motion components from Chakra UI components const MotionImage = motion(Image); const MotionText = motion(Text); function Hero2() { const textStackRef = useRef(null); const imageStackRef = useRef(null); // Create refs and animation controls for scroll-based animations const containerRef = useRef(null); const isInView = useInView(containerRef, { once: true, amount: 0.2 }); const textControls = useAnimation(); const imageControls = useAnimation(); // Trigger animations when component comes into view useEffect(() => { if (isInView) { textControls.start("visible"); imageControls.start("visible"); } else { textControls.start("hidden"); imageControls.start("hidden"); } }, [isInView, textControls, imageControls]); // Add this useEffect to measure and update heights useEffect(() => { const updateHeight = () => { if (textStackRef.current) { // const height = textStackRef.current.offsetHeight; } }; // Initial measurement updateHeight(); // Setup resize observer for responsive adjustments const resizeObserver = new ResizeObserver(updateHeight); if (textStackRef.current) { resizeObserver.observe(textStackRef.current); } // Cleanup return () => { if (textStackRef.current) { resizeObserver.disconnect(); } }; }, []); return ( 外出用餐難控用油, 不健康油脂或增「三高」風險 {"都市人難免外出用餐,即使精選食材,也無法控制下鍋的食油,一天吃進多少隱形壞油難以估算。在家煮食雖可自選用油,但你確定自己用的是「好油」嗎?長期攝取高飽和脂肪、反式脂肪(如牛油、豬油、加工食品、重複使用的煎炸油),會提升壞膽固醇,導致血管堵塞,增加高血壓、高血脂及心血管疾病風險。"} ); } export default Hero2;