Example sharing of jquery imitating Apple's time/date selection effect

小云云
Release: 2018-01-23 09:31:59
Original
2483 people have browsed it

This article mainly introduces examples of time/date selection effects of jquery imitating Apple, which has a good reference value. Let's take a look with the editor below, I hope it can help everyone.

1.html file, index.html


    Title    
    
Copy after login

Switch the browser to mobile mode when viewing the effect

2. Plug-in link address:http://files.cnblogs.com/files/jiebba/pickDater.js,

Quote plug-in

3. Call plug-in

1. Call date


##

var opt={ startY:1990, //开始时间 endY:2050, //结束事件 mPickerType:1, separator:'/' //日期分割符 } $('#pickDater').mPickDater(opt);
Copy after login

2. Calling time


var opt={ startY:1990, //开始时间 endY:2050, //结束事件 mPickerType:2, separator:'/' //日期分割符 } $('#pickDater').mPickDater(opt);
Copy after login

3. Calling date and time

##

var opt={ startY:1990, //开始时间 endY:2050, //结束事件 mPickerType:3, separator:'/' //日期分割符 } $('#pickDater').mPickDater(opt);
Copy after login

The code is for reference only, specific functions can be expanded by yourself.

Related recommendations:


jquery writing date picker example tutorial

jQuery UI date picker Datepicker detailed explanation

How to develop a date picker for a WeChat applet

The above is the detailed content of Example sharing of jquery imitating Apple's time/date selection effect. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!