#feedControl { 幅:400px; マージン:20px; }

Google AJAX Feed APIを使用してHabrahabrのライブブロードキャストを接続します

1か月前のHabratopicに加えて
-API を使用した実用的な
Habrahabrの「ライブブロードキャスト」を接続します。
<style type = "text / css">
#feedControl {
幅:400px;
マージン:20px;
}
</ style>

<script src = " www.google.com/jsapi?key=internal-sample " type = "text / javascript"> </ script>
<script language = "Javascript" type = "text / javascript"> // <![CDATA [
// AJAX Feed APIをダウンロードします
google.load( "feeds"、 "1");
関数OnLoad(){
//フィードコントロールを作成します
var feedControl = new google.feeds.FeedControl();
// Habrのテープへのリンクを指定します
feedControl.addFeed( "http://www.habrahabr.ru/rss/live/"、 "Habrahabr");
//ページにハブラトピコフを表示する量を示します
feedControl.setNumEntries(8)
// Habratopiksは新しいウィンドウで開きます
feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
feedControl.draw(document.getElementById( "feedControl"));
}
google.setOnLoadCallback(OnLoad);
//]]>
</ script>
<div id = "feedControl"> Habratopiksを読み込んでいます... </ div>


Source: https://habr.com/ru/post/J8682/


All Articles