jquery世界各国时区在线时间

所属分类: 网页特效-日期时间    2024-11-05 09:56:51

jquery世界各国时区在线时间 ie兼容6
 查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

jquery世界各国时区在线时间(共10个文件)

    • index.html

使用方法

var update = function () {
  // Set Timezones
  currentTime = moment(new Date());
  orlandoTime = moment.tz("US/Eastern");
  kielTime = orlandoTime.clone().tz("Europe/Berlin");
  dubaiTime = orlandoTime.clone().tz("Asia/Dubai");
  bogotaTime = orlandoTime.clone().tz("America/Bogota");
  chicagoTime = orlandoTime.clone().tz("America/Chicago");
  torontoTime = orlandoTime.clone().tz("America/Toronto");
  dhakaTime = orlandoTime.clone().tz("Asia/Dhaka");
  londonTime = orlandoTime.clone().tz("Europe/London");
  aguadillaTime = orlandoTime.clone().tz("America/Puerto_Rico");

  // Orlando
  $('.location-orlando .time-24 .hour').html(orlandoTime.format('HH'));
  $('.location-orlando .time-24 .minute').html(orlandoTime.format('mm'));
  $('.location-orlando .time-12').html(orlandoTime.format('LT'));
  $('.location-orlando .day').html(orlandoTime.format('ddd.'));
  $('.location-orlando .date').html(orlandoTime.format('Do'));

  // Kiel
  $('.location-kiel .time-24 .hour').html(kielTime.format('HH'));
  $('.location-kiel .time-24 .minute').html(kielTime.format('mm'));
  $('.location-kiel .time-12').html(kielTime.format('LT'));
  $('.location-kiel .day').html(kielTime.format('ddd.'));
  $('.location-kiel .date').html(kielTime.format('Do'));

  // Dubai
  $('.location-dubai .time-24 .hour').html(dubaiTime.format('HH'));
  $('.location-dubai .time-24 .minute').html(dubaiTime.format('mm'));
  $('.location-dubai .time-12').html(dubaiTime.format('LT'));
  $('.location-dubai .day').html(dubaiTime.format('ddd.'));
  $('.location-dubai .date').html(dubaiTime.format('Do'));

  // Bogota
  $('.location-bogota .time-24 .hour').html(bogotaTime.format('HH'));
  $('.location-bogota .time-24 .minute').html(bogotaTime.format('mm'));
  $('.location-bogota .time-12').html(bogotaTime.format('LT'));
  $('.location-bogota .day').html(bogotaTime.format('ddd.'));
  $('.location-bogota .date').html(bogotaTime.format('Do'));

  // Chicago
  $('.location-chicago .time-24 .hour').html(chicagoTime.format('HH'));
  $('.location-chicago .time-24 .minute').html(chicagoTime.format('mm'));
  $('.location-chicago .time-12').html(chicagoTime.format('LT'));
  $('.location-chicago .day').html(chicagoTime.format('ddd.'));
  $('.location-chicago .date').html(chicagoTime.format('Do'));

  // Toronto
  $('.location-toronto .time-24 .hour').html(torontoTime.format('HH'));
  $('.location-toronto .time-24 .minute').html(torontoTime.format('mm'));
  $('.location-toronto .time-12').html(torontoTime.format('LT'));
  $('.location-toronto .day').html(torontoTime.format('ddd.'));
  $('.location-toronto .date').html(torontoTime.format('Do'));

  // Dhaka
  $('.location-dhaka .time-24 .hour').html(dhakaTime.format('HH'));
  $('.location-dhaka .time-24 .minute').html(dhakaTime.format('mm'));
  $('.location-dhaka .time-12').html(dhakaTime.format('LT'));
  $('.location-dhaka .day').html(dhakaTime.format('ddd.'));
  $('.location-dhaka .date').html(dhakaTime.format('Do'));

  // London
  $('.location-london .time-24 .hour').html(londonTime.format('HH'));
  $('.location-london .time-24 .minute').html(londonTime.format('mm'));
  $('.location-london .time-12').html(londonTime.format('LT'));
  $('.location-london .day').html(londonTime.format('ddd.'));
  $('.location-london .date').html(londonTime.format('Do'));

  // Aguadilla
  $('.location-aguadilla .time-24 .hour').html(aguadillaTime.format('HH'));
  $('.location-aguadilla .time-24 .minute').html(aguadillaTime.format('mm'));
  $('.location-aguadilla .time-12').html(aguadillaTime.format('LT'));
  $('.location-aguadilla .day').html(aguadillaTime.format('ddd.'));
  $('.location-aguadilla .date').html(aguadillaTime.format('Do'));
};

// Update Time
$(function () {
  update();
  setInterval(update, 1000);
});




// Toggle Switch
var highlightBtn = $('#switch');
var locationContainer = $('.location');
var locationBg = $('.bg');

function toggleView() {
  locationBg.toggleClass('bg-img');
  locationContainer.toggleClass('white');
}

toggleView();

highlightBtn.click(function () {
  toggleView();
});

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 日期时间

jquery支持选择年月日时分的器插件

一款日期选择器特效,支持自定义设置单日历、双日历、选择限制等。
  日期时间
 7675  0

bootstrap响应式支持新增日程安排的日历插件

一款可以自定义添加日历事件的多功能日历插件,支持用户自定义事件的详细信息,如事件名称、开始和结束时间以及背景颜色。此工具有助于高效组织和安排既定日程。
  日期时间
 8835  0

js日历效果的翻页动画计时器特效

一款日历风格的60秒计时器,带翻页动画特效,循环重复进行。
  日期时间
 8764  0

jquery鼠标单击弹出日历日期时间选择器

一款可即时返回数据的日历选择器插件,支持定位自动选择今天日期。
  日期时间
 8751  0

评论数(0) 回复有机会获得K币 用户协议

^_^ 还没有人评论,快来抢个沙发!
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论