湖南致公党官方网站
中国致公党湖南省委员会官方网站提供了关于该组织的全面信息和活动日程。网站的主要内容集中在介绍致公党的历史、宗旨、工作以及其在湖南省的政治和社会活动中的作用。同时,网站还会发布与致公党相关的重要新闻和通知。
为了更好地展示网站的内容,当用户访问网站时,可能会遇到一个灰度化的效果。这是为了提醒用户正在浏览的是测试页面。然而,一旦当前日期在thebegintime
和theendtime
之间(包括这两个日期),这个效果就会被移除。
以下是一些关键的JavaScript代码片段:
// 设置开始和结束时间
var thebegintime = '2020-04-04 00:00:00';
var theendtime = '2020-04-05 00:00:00';
// 将字符串转换为日期对象
var begind=new Date(Date.parse(thebegintime.replace(/-/g,"/")));
var endd=new Date(Date.parse(theendtime.replace(/-/g,"/")));
// 获取当前日期
var curDate=new Date();
// 判断当前日期是否在指定范围内,如果是则应用滤镜以移除颜色
if(begind <=curDate && endd>=curDate){
document.write('<style> html,body { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); }</style>');
} else {
// 如果不在指定范围内,则移除滤镜效果
document.write('<style> html,body { filter:none; }</style>');
}
这段代码首先检查当前日期是否在给定的时间范围内。如果在这个时间段内,它将应用一个样式规则,使整个网页变为灰度。否则,它将移除所有的过滤效果。