Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!-- Evo Calendar.js:https://edlynvillegas.github.io/evo-calendar/ -->
<div class="container">
  <!--   表格區 -->
  <form class="form">
    <div>
      <label for="name">活動標題</label>
      <input type="text" placeholder="活動標題" class="event-input">
    </div>
    <div>
      <label for="startDate">開始時間</label>
      <input type="date" class="event-input">
    </div>
    <div>
      <label for="endDate">結束時間</label>
      <input type="date" class="event-input">
    </div>
    <div>
      <label for="type">活動類型</label>
      <select name="type" id="type" class="event-input">
        <option value="">--Please choose an option--</option>
        <option value="event">event</option>
        <option value="holiday">holiday</option>
      </select>
    </div>
    <div>
      <label for="everyYear">是否每年重覆</label>
      <select name="everyYear" id="everyYear" class="event-input">
        <option value="">--Please choose an option--</option>
        <option value="yes">yes</option>
        <option value="no">no</option>
      </select>
    </div>
    <div>
      <label for="describe">敘述</label>
      <textarea name="describe" id="describe" cols="20" rows="10" class="event-input"></textarea>
    </div>
    <button type="button" class="addEvent">送出</button>
  </form>
  <!-- 月曆渲染區 -->
  <div id="calendar" style="width:700px"></div>
</div>
              
            
!

CSS

              
                .container {
  max-width: 1000px;
  display: flex;
  margin: 0 auto;
}

.form {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  gap: 8px;
  width: 200px;
}

/* 月曆本體 */
.sidebar-hide .calendar-inner {
  overflow: hidden;
}

/* 日期 */
tr.calendar-body .calendar-day .day {
  padding: 8px;
  width: 40px;
  height: 40px;
}

/* 事件點點 */
.event-indicator {
  top: 120%;
}

              
            
!

JS

              
                console.clear();
//事件來源
const events = [
  {
    id: "E001",
    name: "看牙醫",
    description: "記得先刷牙",
    date: "2023/12/05",
    type: "event",
    everyYear: false
  },
  {
    id: "E002",
    name: "聖誕節",
    date: "2023/12/25",
    type: "holiday",
    everyYear: true
  },
  {
    id: "E003",
    name: "旅行",
    description: "報平安",
    date: ["2023/12/10", "2023/12/14"],
    type: "holiday",
    everyYear: false
  }
];

/* 月曆初始化控制 ============*/
$("#calendar")
  .evoCalendar({
    format: "yyyy/mm/dd", //時間格式
    todayHighlight: true, //標註今天
    sidebarDisplayDefault: false, //左側月份預設顯示狀態
    eventDisplayDefault: false, //右側事件預設顯示狀態
    calendarEvents: events //傳入套件的事件來源
  })
  .on("selectEvent", function (event, activeEvent) {
    // 點擊月曆右側的事件列才會觸發
    console.log("你選擇的事件是", event);
  })
  .on("selectDate", function (event, activeDate) {
    // 點擊月曆日期會觸發
    console.log(
      "你選擇的事件 id 是",
      event.target.evoCalendar.$active.events[0].id
    );
    console.log(`你選擇的日期是:${activeDate}`);
  })
  .on("selectMonth", function (event, activeMonth) {
    // 點擊月曆月份會觸發
    console.log(`你選擇的月份是:${activeMonth}`);
  });

/* 新增事件 =============*/
//綁定送出按鈕
const btnAddEvent = document.querySelector(".addEvent");
//綁定所有輸入格
const eventInput = document.querySelectorAll(".event-input");
//綁定表單
const form = document.querySelector(".form");

btnAddEvent.addEventListener("click", addEvent);

function addEvent() {
  //有未填欄位就跳出
  if (!checkFormError()) {
    return;
  }

  const data = {
    id: new Date().getTime(),
    name: eventInput[0].value,
    description: eventInput[5].value,
    date: [eventInput[1].value, eventInput[2].value],
    type: eventInput[3].value,
    everyYear: eventInput[4].value === "yes" ? true : false
  };

  //印出要新增的資料
  console.log(data);

  //在月曆上新增事件
  $("#calendar").evoCalendar("addCalendarEvent", data);

  //執行月曆初始化
  $("#calendar").evoCalendar();

  //清除表單
  form.reset();
}

function checkFormError() {
  let isFilledForm = true;

  eventInput.forEach((item) => {
    if (item.value.trim() === "") {
      isFilledForm = false;
    }
  });

  alert("欄位均須填寫");
  return isFilledForm;
}

$("#calendar").on("selectEvent", function (event, activeEvent) {
  console.log(activeEvent);
});

              
            
!
999px

Console