我正在尝试使用 google newsShow api 在 html 应用程序中显示新闻。这是代码
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Google AJAX Search API Sample</title>
<script src="http://www.google.com/jsapi?key=AIzaSyA5m1Nc8ws2BbmPRwKu5gFradvD_hgq6G0" type="text/javascript"></script>
<script type="text/javascript">
google.load("elements", "1", {packages : ["newsshow"]});
function onLoad() {
// Set the display time to 2 seconds, and transition time to 100 ms
var options = {
"queryList" : [
{
"title" : "indian News",
"topic" : "n",
"ned" : "in"
}
],
"displayTime" : 1000,
"transitionTime" : 50
}
var content = document.getElementById('content');
var newsShow = new google.elements.NewsShow(content, options);
}
google.setOnLoadCallback(onLoad);
</script>
</head>
<body style="font-family: Arial;border: 0 none;">
<div id="content"></div>
</body>
</html>
直到昨天,这段代码都运行良好。但是今天早上显示时间根本不起作用。
我参考了此链接中提供的示例, https://code.google.com/apis/ajax/playground/#timer_options
在这里它也不起作用,我清楚地记得新闻是如何根据过渡时间更新的。
我已经尝试了所有这些事情,1. 关闭浏览器 n 再次启动 2. 重新启动系统 3. 检查其他桌面上的示例。
然而没有任何工作。完全不知道发生了什么。
谁能帮忙,
谢谢你的时间!!