Skip to main content
Create new
Introduction
Reactivity
Props
Logic
Events
Bindings
Lifecycle
Stores
Motion
Transitions
Animations
Easing
SVG
Actions
Classes
Component composition
Context API
Special elements
Module context
Debugging
7GUIs
Miscellaneous
App.svelte
Roller.svelte
<script>
import Roller from './Roller.svelte'

const getMonth = (date)=>{
const month = date.toString().split(" ")[1]
return month;
}
const months = Array(12).fill().map((v,i)=>getMonth(new Date((i+1)+"/1/2000")))
let month = months[4]
let day = 1;
let year = 1999;
const daysPerMonth = (m,y)=>{
if (["Jan","Mar","May","Jul","Aug","Oct","Dec"].includes(m)){
return 31;
}
if (m === "Feb"){
// take leap years into account
return (y % 4) === 0 ? 29 : 28;
}
return 30;
}
</script>
<style>
:global(*) {
box-sizing: border-box;
}
.background{
background:linear-gradient(250deg, rgb(50,50,255), rgb(150,150,250));;
display:flex;
flex-direction:column;
height:100%;
justify-content:center;
align-items:center; touch-action: none;
}
loading Svelte compiler...
/* Select a component to see its compiled code */
result = svelte.compile(source, {
generate: ,
});
/* Select a component to see its compiled code */