```javascriptvar Switcher = [
{
'title': '《我们的赛场》何以打动海外受众',
'stitle': '',
'link': 'http://views.ce.cn/view/ent/202406/06/t20240606_39028584.shtml'
},
{
'title': '"华夏第一高瀑",源头水管不该隐瞒',
'stitle': '',
'link': 'http://views.ce.cn/view/ent/202406/05/t20240605_39027074.shtml'
},
{
'title': '麦田CBD,为城市巧留白',
'stitle': '',
'link': 'http://views.ce.cn/view/ent/202406/04/t20240604_39025473.shtml'
},
{
'title': '驱车400公里喝10元手冲咖啡,跟风打卡热潮下的冷思考',
'stitle': '',
'link': ''
}
];
```
```
// 定义数组Switcher,存储不同页面的信息var Switcher = [
{ 'title': '', 'stitle': '', 'link': '' },
{ 'title': '', 'stitle': '', 'link': '' },
{ 'title': '', 'stitle': '', 'link': '' }
];
// 设置第4个页面的标题和链接
Switcher[4] = { 'title': '取消新能源汽车购买限制正当其时', 'stitle': '', 'link': 'http://views.ce.cn/view/ent/202406/03/t20240603_39023733.shtml' };
// 设置第5个页面的标题和链接
Switcher[5] = { 'title': '取消新能源汽车购买限制正当其时', 'stitle': '', 'link': 'http://views.ce.cn/view/ent/202405/31/t20240531_39021755.shtml' };
// 定义变量refreshSwitchTimer用于定时刷新页面
var refreshSwitchTimer = null;
// 根据当前屏幕显示不同的页面内容,并设置定时器在3秒后自动刷新页面
switchPic(CurScreen);
refreshSwitchTimer = setTimeout(function() { reSwitchPic(); }, 3000);
```