Created
March 18, 2023 18:44
-
-
Save surfernsk/e88b72f94752ad273a1920b4dd2b9b1f to your computer and use it in GitHub Desktop.
Event Calendar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .hero | |
| #calendar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Initialize evo-calendar in your script file or an inline <script> tag | |
| $(document).ready(function() { | |
| $('#calendar').evoCalendar({ | |
| settingName: "hello" | |
| }) | |
| calendarEvents:[ | |
| { | |
| id:'mmnnn', | |
| name:'new year', | |
| date:'January/1/2020', | |
| type:'holiday', | |
| everyYear:true | |
| }, | |
| { | |
| id:'0908', | |
| name:'new year', | |
| date:'January/1/2020', | |
| type:'holiday', | |
| everyYear:true | |
| } | |
| ] | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/[email protected]/evo-calendar/js/evo-calendar.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *{ | |
| padding:0; | |
| margin:0; | |
| box-sizing:border-box; | |
| } | |
| body{ | |
| } | |
| .hero{ | |
| width:100%; | |
| height:100%; | |
| background:linear-gradient(45deg,#83B8D7,#BAA6FD); | |
| display:grid; | |
| } | |
| #calendar{ | |
| width:90%; | |
| margin:40px auto; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/evo-calendar/css/evo-calendar.min.css" rel="stylesheet" /> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/evo-calendar/css/evo-calendar.midnight-blue.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment