嵌入式预定系统 Booking-js
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/timekit-io/booking-js
软件介绍
Booking-js 是一个简单漂亮的嵌入式预定系统。它用 FullCalendar 来自定义主题。
示例代码:
{ // Required
email: '',
// Your Timekit user's email (used for auth)
apiToken: '',
// Your Timekit user's apiToken (as generated through the wizard)
calendar: '',
// Your Timekit calendar ID that bookings should end up in
// Optional
targetEl: '#bookingjs',
// Which element should we the library load into
name: '',
// Display name to show in the header and timezone helper
avatar: '',
// Provide an image URL for a circular image avatar
autoload: true,
// Auto initialization if config object is found on window var
includeStyles: true,
// Inject fullCalendar and library styles in <head>
showCredits: true,
// Display a "Powered by Timekit" attribution footer (thanks!)
// Internationalization
localization: {
showTimezoneHelper: true,
// Should the timezone difference helper (bottom) be shown?
timeDateFormat: '12h-mdy-sun'
// For EU-style formatting, use '24h-dmy-mon' (see below)
}
// Timekit JS SDK (see below)
timekitConfig: { ... },
// Timekit FindTime endpoint (see below)
timekitFindTime: { ... },
// Timekit CreateEvent endpoint (see below)
timekitCreateEvent: { ... },
// FullCalendar options (see below)
fullCalendar: { ... },
// Register callbacks on events
callbacks: {
findTimeStarted:
function(args) {},
findTimeSuccessful:
function(response) {},
findTimeFailed:
function(response) {},
createEventStarted:
function(args) {},
createEventSuccessful:
function(response) {},
createEventFailed:
function(response) {},
getUserTimezoneStarted:
function(args) {},
getUserTimezoneSuccesful: function(response) {},
getUserTimezoneFailed: function(response) {},
fullCalendarInitialized: function() {},
renderCompleted: function() {},
showBookingPage: function(event) {},
closeBookingPage: function() {},
submitBookingForm: function(values) {}
}
}挑战程序设计竞赛
秋叶拓哉、岩田阳一、北川宜稔 / 巫泽俊、庄俊元、李津羽 / 人民邮电出版社 / 2013-7-1 / CNY 79.00
世界顶级程序设计高手的经验总结 【ACM-ICPC全球总冠军】巫泽俊主译 日本ACM-ICPC参赛者人手一册 本书对程序设计竞赛中的基础算法和经典问题进行了汇总,分为准备篇、初级篇、中级篇与高级篇4章。作者结合自己丰富的参赛经验,对严格筛选的110 多道各类试题进行了由浅入深、由易及难的细致讲解,并介绍了许多实用技巧。每章后附有习题,供读者练习,巩固所学。 本书适合程序设计......一起来看看 《挑战程序设计竞赛》 这本书的介绍吧!
