{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Gib0g4v6vRk0GciQ9zso/z0J1SgRNXyVhDzAyZGj5/FramerButton.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget,motion,AnimatePresence}from\"framer\";export default function CardSlideshow({// Card content\nslides=[],// Layout options\nwidth=350,height=480,autoPlay=true,playInterval=4e3,// 3D effect settings\nmaxRotation=12,perspective=1200,transitionSpeed=.3,hoverScale=1.02,// Glassmorphism styling\nuseGlassmorphism=true,glassOpacity=.8,blurStrength=10,borderWidth=1,borderColor=\"rgba(255, 255, 255, 0.2)\",shadowColor=\"rgba(0, 0, 0, 0.3)\",shadowIntensity=.4,// Visual styling\ncardRadius=16,backgroundColor=\"rgba(255, 255, 255, 0.8)\",footerHeight=160,footerBackgroundColor=\"rgba(255, 255, 255, 0.8)\",titleColor=\"#111111\",descriptionColor=\"#666666\",buttonBackgroundColor=\"#3b82f6\",buttonTextColor=\"#ffffff\",// Navigation controls\nshowNavigationDots=true,showNavigationArrows=true,navigationDotsColor=\"rgba(0, 0, 0, 0.3)\",navigationDotsActiveColor=\"#3b82f6\",// Typography\ntitleSize=20,descriptionSize=14,buttonSize=14,fontFamily=\"Inter, system-ui, sans-serif\"}){const[currentSlide,setCurrentSlide]=useState(0);const[rotation,setRotation]=useState({x:0,y:0});const[isHovering,setIsHovering]=useState(false);const[isPaused,setIsPaused]=useState(false);const cardRef=useRef(null);const isFramerRender=RenderTarget.current()===RenderTarget.canvas;// Default slides if none provided\nconst effectiveSlides=slides.length>0?slides:[{id:\"1\",title:\"Discover Beautiful Places\",description:\"Explore stunning landscapes from around the world captured in high resolution\",imageUrl:\"https://placehold.co/600x400/3b82f6/ffffff\",buttonText:\"Explore More\",buttonLink:\"#\"},{id:\"2\",title:\"Mountain Adventures\",description:\"Thrilling experiences waiting for you in the most breathtaking mountain ranges\",imageUrl:\"https://placehold.co/600x400/10b981/ffffff\",buttonText:\"Book Now\",buttonLink:\"#\"},{id:\"3\",title:\"Ocean Retreats\",description:\"Relax and unwind with the soothing sound of waves at exclusive beach destinations\",imageUrl:\"https://placehold.co/600x400/f59e0b/ffffff\",buttonText:\"View Packages\",buttonLink:\"#\"}];// Auto-play slideshow\nuseEffect(()=>{let interval;if(autoPlay&&!isPaused){interval=setInterval(()=>{setCurrentSlide(prev=>(prev+1)%effectiveSlides.length);},playInterval);}return()=>clearInterval(interval);},[autoPlay,isPaused,playInterval,effectiveSlides.length]);// Get image URL from slide (handling both string and object formats)\nconst getImageUrl=slide=>{if(typeof slide.imageUrl===\"string\"){return slide.imageUrl;}return slide.imageUrl.src;};// Handle mouse move for 3D effect\nconst handleMouseMove=e=>{if(!cardRef.current||!isHovering)return;const rect=cardRef.current.getBoundingClientRect();const centerX=rect.left+rect.width/2;const centerY=rect.top+rect.height/2;// Calculate rotation based on mouse position relative to card center\nconst rotateY=-((e.clientX-centerX)/(rect.width/2))*maxRotation;const rotateX=(e.clientY-centerY)/(rect.height/2)*maxRotation;setRotation({x:rotateX,y:rotateY});};// Navigation handlers\nconst goToNextSlide=()=>{setCurrentSlide(prev=>(prev+1)%effectiveSlides.length);};const goToPrevSlide=()=>{setCurrentSlide(prev=>(prev-1+effectiveSlides.length)%effectiveSlides.length);};const goToSlide=index=>{setCurrentSlide(index);};// Handle mouse enter/leave\nconst handleMouseEnter=()=>{setIsHovering(true);setIsPaused(true);};const handleMouseLeave=()=>{setIsHovering(false);setIsPaused(false);setRotation({x:0,y:0});};// Glass effect styles\nconst getGlassStyles=()=>{if(!useGlassmorphism)return{};return{backgroundColor:footerBackgroundColor,backdropFilter:`blur(${blurStrength}px)`,WebkitBackdropFilter:`blur(${blurStrength}px)`,boxShadow:`0 10px 30px rgba(0, 0, 0, ${shadowIntensity})`,border:`${borderWidth}px solid ${borderColor}`};};const slideGlassStyles=getGlassStyles();return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",width:`${width}px`,height:`${height}px`,perspective:`${perspective}px`,fontFamily},children:[/*#__PURE__*/_jsx(motion.div,{ref:cardRef,onMouseMove:handleMouseMove,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,whileHover:{scale:hoverScale},style:{width:\"100%\",height:\"100%\",position:\"relative\",transformStyle:\"preserve-3d\",transform:isHovering?`rotateX(${rotation.x}deg) rotateY(${rotation.y}deg)`:\"rotateX(0) rotateY(0)\",transition:`transform ${transitionSpeed}s ease`,borderRadius:`${cardRadius}px`,overflow:\"hidden\",boxShadow:`0 20px 50px ${shadowColor}`},children:/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",position:\"relative\"},children:/*#__PURE__*/_jsx(AnimatePresence,{initial:false,children:effectiveSlides.map((slide,index)=>index===currentSlide&&/*#__PURE__*/_jsxs(motion.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},transition:{duration:.5},style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",borderRadius:`${cardRadius}px`,overflow:\"hidden\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",backgroundImage:`url(${getImageUrl(slide)})`,backgroundSize:\"cover\",backgroundPosition:\"center\"}}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"absolute\",bottom:0,left:0,width:\"100%\",height:`${footerHeight}px`,padding:\"24px\",boxSizing:\"border-box\",opacity:glassOpacity,...useGlassmorphism?slideGlassStyles:{backgroundColor:footerBackgroundColor},display:\"flex\",flexDirection:\"column\",justifyContent:\"space-between\"},children:[/*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsx(\"h2\",{style:{margin:0,fontSize:`${titleSize}px`,fontWeight:600,color:titleColor,marginBottom:\"12px\"},children:slide.title}),/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontSize:`${descriptionSize}px`,color:descriptionColor,lineHeight:1.5,display:\"-webkit-box\",WebkitLineClamp:3,WebkitBoxOrient:\"vertical\",overflow:\"hidden\"},children:slide.description})]}),/*#__PURE__*/_jsx(\"a\",{href:slide.buttonLink,style:{display:\"inline-block\",marginTop:\"16px\",backgroundColor:buttonBackgroundColor,color:buttonTextColor,fontSize:`${buttonSize}px`,fontWeight:500,textDecoration:\"none\",padding:\"10px 20px\",borderRadius:\"6px\",boxShadow:\"0 2px 4px rgba(0,0,0,0.1)\",transition:\"all 0.2s ease\",cursor:\"pointer\"},children:slide.buttonText})]})]},slide.id))})})}),showNavigationDots&&effectiveSlides.length>1&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",bottom:\"-30px\",left:\"50%\",transform:\"translateX(-50%)\",display:\"flex\",gap:\"8px\",zIndex:2},children:effectiveSlides.map((_,index)=>/*#__PURE__*/_jsx(\"button\",{onClick:()=>goToSlide(index),style:{width:\"10px\",height:\"10px\",borderRadius:\"50%\",backgroundColor:index===currentSlide?navigationDotsActiveColor:navigationDotsColor,border:\"none\",padding:0,cursor:\"pointer\",transition:\"all 0.2s ease\"},\"aria-label\":`Go to slide ${index+1}`},index))}),showNavigationArrows&&effectiveSlides.length>1&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"button\",{onClick:goToPrevSlide,style:{position:\"absolute\",top:\"50%\",left:\"-40px\",transform:\"translateY(-50%)\",width:\"40px\",height:\"40px\",borderRadius:\"50%\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",border:\"none\",boxShadow:\"0 2px 6px rgba(0, 0, 0, 0.1)\",cursor:\"pointer\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",zIndex:2},\"aria-label\":\"Previous slide\",children:/*#__PURE__*/_jsx(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M15 18L9 12L15 6\",stroke:\"#333\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})})}),/*#__PURE__*/_jsx(\"button\",{onClick:goToNextSlide,style:{position:\"absolute\",top:\"50%\",right:\"-40px\",transform:\"translateY(-50%)\",width:\"40px\",height:\"40px\",borderRadius:\"50%\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",border:\"none\",boxShadow:\"0 2px 6px rgba(0, 0, 0, 0.1)\",cursor:\"pointer\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",zIndex:2},\"aria-label\":\"Next slide\",children:/*#__PURE__*/_jsx(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M9 6L15 12L9 18\",stroke:\"#333\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})})})]})]});}// Default slides data for preview\nconst defaultSlides=[{id:\"1\",title:\"Discover Beautiful Places\",description:\"Explore stunning landscapes from around the world captured in high resolution\",imageUrl:\"https://placehold.co/600x400/3b82f6/ffffff\",buttonText:\"Explore More\",buttonLink:\"#\"},{id:\"2\",title:\"Mountain Adventures\",description:\"Thrilling experiences waiting for you in the most breathtaking mountain ranges\",imageUrl:\"https://placehold.co/600x400/10b981/ffffff\",buttonText:\"Book Now\",buttonLink:\"#\"},{id:\"3\",title:\"Ocean Retreats\",description:\"Relax and unwind with the soothing sound of waves at exclusive beach destinations\",imageUrl:\"https://placehold.co/600x400/f59e0b/ffffff\",buttonText:\"View Packages\",buttonLink:\"#\"}];// Add property controls for Framer\naddPropertyControls(CardSlideshow,{// Card content\nslides:{type:ControlType.Array,title:\"Slides\",control:{type:ControlType.Object,controls:{id:{type:ControlType.String,title:\"ID\"},title:{type:ControlType.String,title:\"Title\"},description:{type:ControlType.String,title:\"Description\",displayTextArea:true},imageUrl:{type:ControlType.ResponsiveImage,title:\"Image\"},buttonText:{type:ControlType.String,title:\"Button Text\"},buttonLink:{type:ControlType.Link,title:\"Button Link\"}}},defaultValue:defaultSlides},// Layout options\nwidth:{type:ControlType.Number,title:\"Width\",defaultValue:350,min:200,max:800,step:10,displayStepper:true},height:{type:ControlType.Number,title:\"Height\",defaultValue:480,min:300,max:1e3,step:10,displayStepper:true},autoPlay:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true,enabledTitle:\"On\",disabledTitle:\"Off\"},playInterval:{type:ControlType.Number,title:\"Play Interval (ms)\",defaultValue:4e3,min:1e3,max:1e4,step:500,displayStepper:true,hidden(props){return!props.autoPlay;}},// 3D effect settings\nmaxRotation:{type:ControlType.Number,title:\"Max Rotation\",defaultValue:12,min:0,max:45,step:1,displayStepper:true},perspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:1200,min:500,max:2e3,step:100,displayStepper:true},transitionSpeed:{type:ControlType.Number,title:\"Transition Speed\",defaultValue:.3,min:.1,max:2,step:.1,displayStepper:true},hoverScale:{type:ControlType.Number,title:\"Hover Scale\",defaultValue:1.02,min:1,max:1.2,step:.01,displayStepper:true},// Glassmorphism styling\nuseGlassmorphism:{type:ControlType.Boolean,title:\"Glass Effect\",defaultValue:true,enabledTitle:\"On\",disabledTitle:\"Off\"},glassOpacity:{type:ControlType.Number,title:\"Glass Opacity\",defaultValue:.8,min:.1,max:1,step:.05,displayStepper:true,hidden(props){return!props.useGlassmorphism;}},blurStrength:{type:ControlType.Number,title:\"Blur Strength\",defaultValue:10,min:0,max:30,step:1,displayStepper:true,hidden(props){return!props.useGlassmorphism;}},borderWidth:{type:ControlType.Number,title:\"Border Width\",defaultValue:1,min:0,max:5,step:.5,displayStepper:true,hidden(props){return!props.useGlassmorphism;}},borderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"rgba(255, 255, 255, 0.2)\",hidden(props){return!props.useGlassmorphism;}},shadowColor:{type:ControlType.Color,title:\"Shadow Color\",defaultValue:\"rgba(0, 0, 0, 0.3)\",hidden(props){return!props.useGlassmorphism;}},shadowIntensity:{type:ControlType.Number,title:\"Shadow Intensity\",defaultValue:.4,min:0,max:1,step:.1,displayStepper:true},// Visual styling\ncardRadius:{type:ControlType.Number,title:\"Card Radius\",defaultValue:16,min:0,max:50,step:1,displayStepper:true},footerHeight:{type:ControlType.Number,title:\"Footer Height\",defaultValue:160,min:80,max:300,step:10,displayStepper:true},footerBackgroundColor:{type:ControlType.Color,title:\"Footer Color\",defaultValue:\"rgba(255, 255, 255, 0.8)\"},titleColor:{type:ControlType.Color,title:\"Title Color\",defaultValue:\"#111111\"},descriptionColor:{type:ControlType.Color,title:\"Description Color\",defaultValue:\"#666666\"},buttonBackgroundColor:{type:ControlType.Color,title:\"Button BG Color\",defaultValue:\"#3b82f6\"},buttonTextColor:{type:ControlType.Color,title:\"Button Text Color\",defaultValue:\"#ffffff\"},// Navigation controls\nshowNavigationDots:{type:ControlType.Boolean,title:\"Show Dots\",defaultValue:true},showNavigationArrows:{type:ControlType.Boolean,title:\"Show Arrows\",defaultValue:true},navigationDotsColor:{type:ControlType.Color,title:\"Dots Color\",defaultValue:\"rgba(0, 0, 0, 0.3)\",hidden(props){return!props.showNavigationDots;}},navigationDotsActiveColor:{type:ControlType.Color,title:\"Active Dot Color\",defaultValue:\"#3b82f6\",hidden(props){return!props.showNavigationDots;}},// Typography\ntitleSize:{type:ControlType.Number,title:\"Title Size\",defaultValue:20,min:12,max:36,step:1,displayStepper:true},descriptionSize:{type:ControlType.Number,title:\"Description Size\",defaultValue:14,min:10,max:24,step:1,displayStepper:true},buttonSize:{type:ControlType.Number,title:\"Button Size\",defaultValue:14,min:10,max:20,step:1,displayStepper:true},fontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Inter, system-ui, sans-serif\"}});// Framer Canvas Preview Demo\nexport function Demo(){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:\"100vh\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",padding:\"40px\",background:\"linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%)\"},children:/*#__PURE__*/_jsx(CardSlideshow,{})});}/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */\nexport const __FramerMetadata__ = {\"exports\":{\"Demo\":{\"type\":\"reactComponent\",\"name\":\"Demo\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CardSlideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerButton.map"],
  "mappings": "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",
  "names": ["CardSlideshow", "slides", "width", "height", "autoPlay", "playInterval", "maxRotation", "perspective", "transitionSpeed", "hoverScale", "useGlassmorphism", "glassOpacity", "blurStrength", "borderWidth", "borderColor", "shadowColor", "shadowIntensity", "cardRadius", "backgroundColor", "footerHeight", "footerBackgroundColor", "titleColor", "descriptionColor", "buttonBackgroundColor", "buttonTextColor", "showNavigationDots", "showNavigationArrows", "navigationDotsColor", "navigationDotsActiveColor", "titleSize", "descriptionSize", "buttonSize", "fontFamily", "currentSlide", "setCurrentSlide", "ye", "rotation", "setRotation", "isHovering", "setIsHovering", "isPaused", "setIsPaused", "cardRef", "pe", "isFramerRender", "RenderTarget", "effectiveSlides", "ue", "interval", "prev", "getImageUrl", "slide", "handleMouseMove", "e", "rect", "centerX", "centerY", "rotateY", "rotateX", "goToNextSlide", "goToPrevSlide", "goToSlide", "index", "handleMouseEnter", "handleMouseLeave", "slideGlassStyles", "u", "p", "motion", "AnimatePresence", "_", "l", "defaultSlides", "addPropertyControls", "ControlType", "props"]
}
