2012年3月19日月曜日

ブロック要素とインライン要素/ホームページマスター

■ブロック要素

ブロック要素とはテーブルタグやリストタグのように一つの文書のまとまりで 前後に改行が入る要素です。
以下は普段よく使用するブロック要素の一覧です。
ブロック要素の中に入れることができる要素は次のようなパターンがあります。


Google Earthのアップデートの画像をしたとき
ブロック要素一覧(HTML4.01)
ブロック要素だけを入れることができる。
</b></td> </tr><tr ><td>インライン要素&#12289;文字だけを入れることができる&#12290;</td><td><b><h1>&#12316;<h6> <p> <pre></b></td> </tr><tr ><td>ブロック要素&#12289;インライン要素&#12289;文字を入れることができる&#12290;</td><td><b><center> <div></b></td> </tr><tr ><td>特定の要素&#65288;<tr><td><li>等&#65289;だけを入れることができる&#12290;</td><td><b><table> <ol> <ul></b></td> </tr><tr><td>空要素</td><td><b><hr></b></td> </tr></table><h3 class="submidashi3">&#9632;インライン要素</h3> <p> インライン要素とは<font>や<em>のタグのように行内の文字を 装飾したり論理的な意味をなす要素です&#12290; <br/>インライン要素の中に入れることのできる要素はインライン要素や文字だけです&#12290; 但し<button>や<iframe>等のタグはブロック要素も入れることが できます&#12290; 以下は普段よく使用するインライン要素の一覧です&#12290; </p><br style="clear:both;height:1px;overflow:hidden;"></span><span><a href="http://laboricubanitak.blogspot.jp/">18歳児は何をすればよい</a> HTML4.01 Transitional <p class="source1"> <a> <b> <button> <br> <em> <font> <img> <br/><i> <iframe> <input> <strong> <span> <br/><small> <select> <textarea> <u> </p> <h3 class="submidashi3">入れ子の例</h3> 入れ子&#65288;nesting&#65289;とはある要素の中に別の要素を入れることです&#12290; 上の項目で述べたことを踏まえて各要素の入れ子関係に ついて説明します&#12290;分かり易いようにインライン要素だけ青色で表示します&#12290; <p> <b>&#9670;ブロック要素の中にブロック要素だけを入れる</b> </p> <p>フォームタグ直下にはブロック要素しか記述できません&#12290;</p> 間違いの例 <p class="source1"> <form method="post" action="bbs.cgi"> <br/><span><font size="4"></span>名前<span></font></span> <br/></form> </p> 正しい例 <p class="source1"> <form method="post" action="bbs.cgi"><br/><p>名前</p><br/></form> </p> <p><b>&#9670;ブロック要素の中にインライン要素&#12289;文字だけを入れる</b></p> <p>インライン要素の中にブロック要素は記述できません&#12290;<h1>と<a>のタグが 逆になってしまっています&#12290;</p> 間違いの例 <p class="source1"> <span><a href="index.html"></span><h1>TOPページへ</h1><span></a></span> </p><br style="clear:both;height:1px;overflow:hidden;"></span><span><a href="http://atruebossb.blogspot.jp/">どのように人々は彼らの日常生活の中でコンピュータを使用しない</a> 正しい例 <p class="source1"> <h1><span><a href="index.html"></span>TOPページへ<span></a></span></h1> </p> <p><b>&#9670;ブロック要素の中にブロック要素&#12289;インライン要素&#12289;文字を入れる&#12290; </b></p> <p>タグはブロック要素ですがブロック要素である<center>や テーブルタグを入れることはできません&#12290;特に<p>タグの中にテーブルタグ の記述は初心者の方が間違えやすく文法違反になってしまうので 注意が必要です&#12290;また&#12289;<p>&#12316;</p>内に<p>&#12316;</p>を 入れることもできません&#12290; <br/>間違いの例 <p class="source1"> <p><br/><table border="1"><br/><tr><br/><td><br/><span><font color="blue"></span><center>中央に青色</center><span></font></span> <br/></td><br/></tr><br/></table><br/></p> </p> 正しい例 <p class="source1"> <center><br/><table border="1"><br/><tr><br/><td><br/><p><span><font color="blue"></span>中央に青色<span></font></span></p> <br/></td><br/></tr><br/></table><br/></center> </p><br style="clear:both;height:1px;overflow:hidden;"></span><span> <h3 class="submidashi3">div要素の入れ子</h3> <p> 初心者の方がdiv要素内にdiv要素を入れ子として多用している 場合がありますが見出しや段落にはdiv要素は使用しないようにしましょう&#12290; div&#65288;division:区切り&#65289;を多用してしまうと開始の<div>が<body>内のどの行まで適用 されているのか分かりづらくなります&#12290; <p>&#65288;paragraph:段落&#65289;や<h1>&#65288;heading:見出し&#65289;などのタグと違い&#12289;div要素自体に 見出しや段落などの意味は持ちません&#12290; </p> 好ましくない例 <p class="source1"> <div style="font-size:20px;"><b>ホームページの作り方</b></div> <br/><div>1.メモ帳を起動</div><br/><div>2.HTMLタグを打ち込む</div><br/><div>3.ファイル名を付けてブラウザで表示</div><br/><div class="space1"><b>ホームページの公開</b></div> </p> <br/>正しい例 <p class="source1"> <h4"><b>ホームページの作り方</b></h4><span>&#12539;&#12539;&#12539;1番目の見出し</span> <br/><p>1.メモ帳を起動</p><br/><p>2.HTMLタグを打ち込む</p><br/><p>3.ファイル名を付けてブラウザで表示</p><br/><h4 class="space1"><b>ホームページの公開</b></h4><span>&#12539;&#12539;&#12539;2番目の見出し</span> </p><br style="clear:both;height:1px;overflow:hidden;"></span><br style="clear:both;height:1px;overflow:hidden;"><h3>These are our most popular posts: </h3><span class="li4"><h4>スタイルシート講座 - 超初心者のためのホームページ作成講座</h4><span class="hi1" style="background-position:-px 0px;height:px;width:px;"></span>HTML では&#12289;レイアウトを決めるために作表タグ を使ってその枠線や背景色 などを設定しました&#12290; ... 文章がちょうど入るくらいの大きさに設定されました&#12290; 段落を 表す タグや タグにスタイルを設定してできるボックスを&#12300;ブロックボックス&#12301;と いい&#12289;段落の中に使われる タグや ... は hidden とは逆に&#12300;目に見える&#12301;という 意味です&#12290;visible を指定すると幅&#12289;高さの指定にかかわらず&#12289;全て表示されるようになり ます&#12290;<a target="_blank" rel="nofollow" href="http://park16.wakwak.com/~html-css/css/css_18.html"> read more</a></span><span class="li4"><h4>視覚障害者 - Wikipedia</h4><span class="hi1" style="background-position:-px 0px;height:px;width:px;"></span>障害者&#12289;特に視覚障害者はどの時代や国&#12289;地域にも広く存在する社会的少数者&#65288; マイノリティ&#65289;である&#12290; .... 歩道や鉄道駅などでは視覚障害者に配慮し(移動の アクセシビリティ)&#12289;突起のついた&#12300;視覚障害者誘導ブロック&#12301;&#12289;いわゆる&#12300;点字ブロック&#12301;&#65288; ... 対象者の不安感を和らげるため&#12289;身体接触が必要な場合は事前の声かけを行い援助 対象者の了承を得るようにし&#12289;いきなりの身体接触は ... しかし&#12289;ウェブサイトによっては 視覚障害者が利用する場合に問題が起こり&#12289;ネットワーク上から情報を引き出す際に 障害となっている&#12290;<a target="_blank" rel="nofollow" href="http://ja.wikipedia.org/wiki/%E8%A6%96%E8%A6%9A%E9%9A%9C%E5%AE%B3%E8%80%85"> read more</a></span><span class="li4"><h4>ナンプレの解き方</h4><span class="hi1" style="background-position:-px 0px;height:px;width:px;"></span>&#65288;2&#65289;太線で囲まれた3&#215;3のどのブロックにも ナンプレの基本ルールはこの2 ... このよう に&#12289;すべてのタテ列&#12539;ヨコ列&#12539;ブロックに1&#65374;9が1つずつ入るように&#12289;マスに数字を 書き入れていきます&#12290; 基本ルールがわかったら&#12289;それをどのように使って問題を解く のか&#12289;3つの考え方を説明します&#12290; &#12304;考え方1&#12305;1つの数字に注目 ... 同じタテ列にすでに&#12300; 9&#12301;が入っているため&#12289;このタテ列の&#12300;9&#12301;が2つになってしまうからです&#12290;ですから&#12289;この いちばん上の ...<a target="_blank" rel="nofollow" href="http://www.kentei-uketsuke.com/nanpure/howto.html"> read more</a></span><span class="li4"><h4>なんとなくCSSを使っている人が&#65292;CSS中級者になるために &#65288;&#12300;崩れない ...</h4><span class="hi1" style="background-position:-px 0px;height:px;width:px;"></span>2011年2月16日 ... HTMLの全タグを以下の3つに分類できるようになっておくこと&#12290; ブロック要素. インライン 要素. ブロック&#12539;インライン要素. 以下のURLなどを読んでおく ... それを使うことで別の ファイルに置き換わらない要素です&#12290;a&#65292;span&#65292;em&#65292;strong&#65292;q など&#65292;乱暴に言えば普通 のテキストが入るインライン要素です&#12290; ..... なお&#65292;さらにその先&#65288;単なる&#12300;CSS使い&#12301;だけで なく&#65292;本当の&#12300;Webデザイナー&#12301;&#65289;を目指す場合は&#65292;以下のサイトを参照&#12290;<a target="_blank" rel="nofollow" href="http://d.hatena.ne.jp/language_and_engineering/20110216/p1"> read more</a></span> <div class='singleinfo'></div> <div style='clear: both;'></div> <div class='similiar'> <div class='widget-content'> <h3>Related Posts</h3> <div id='data2007'></div><br/><br/> <script type='text/javascript'> var homeUrl3 = "http://theworldwide2.blogspot.com/"; var maxNumberOfPostsPerLabel = 4; var maxNumberOfLabels = 10; maxNumberOfPostsPerLabel = 100; maxNumberOfLabels = 3; function listEntries10(json) { var ul = document.createElement('ul'); var maxPosts = (json.feed.entry.length <= maxNumberOfPostsPerLabel) ? json.feed.entry.length : maxNumberOfPostsPerLabel; for (var i = 0; i < maxPosts; i++) { var entry = json.feed.entry[i]; var alturl; for (var k = 0; k < entry.link.length; k++) { if (entry.link[k].rel == 'alternate') { alturl = entry.link[k].href; break; } } var li = document.createElement('li'); var a = document.createElement('a'); a.href = alturl; if(a.href!=location.href) { var txt = document.createTextNode(entry.title.$t); a.appendChild(txt); li.appendChild(a); ul.appendChild(li); } } for (var l = 0; l < json.feed.link.length; l++) { if (json.feed.link[l].rel == 'alternate') { var raw = json.feed.link[l].href; var label = raw.substr(homeUrl3.length+13); var k; for (k=0; k<20; k++) label = label.replace("%20", " "); var txt = document.createTextNode(label); var h = document.createElement('b'); h.appendChild(txt); var div1 = document.createElement('div'); div1.appendChild(h); div1.appendChild(ul); document.getElementById('data2007').appendChild(div1); } } } function search10(query, label) { var script = document.createElement('script'); script.setAttribute('src', query + 'feeds/posts/default/-/' + label + '?alt=json-in-script&callback=listEntries10'); script.setAttribute('type', 'text/javascript'); document.documentElement.firstChild.appendChild(script); } var labelArray = new Array(); var numLabel = 0; </script> </div> </div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'><span class='post-author vcard'> 投稿者 <span class='fn'>Max</span> </span> <span class='post-timestamp'> 時刻: <a class='timestamp-link' href='http://theworldwide2.blogspot.com/2012/03/blog-post.html' rel='bookmark' title='permanent link'><abbr class='published' title='2012-03-19T08:11:00+09:00'>8:11</abbr></a> </span> <span class='post-comment-link'> </span> <span class='post-icons'> <span class='item-control blog-admin pid-523428400'> <a href='https://www.blogger.com/post-edit.g?blogID=1931237806126860547&postID=9012345409609375399&from=pencil' title='投稿を編集'> <img alt='' class='icon-action' height='18' src='http://www.blogger.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> </div> <div class='post-footer-line post-footer-line-2'><span class='post-labels'> </span> </div> <div class='post-footer-line post-footer-line-3'></div> </div> </div> <div class='comments' id='comments'> <a name='comments'></a> <h4> 0 コメント: </h4> <dl class='avatar-comment-indent' id='comments-block'> </dl> <p class='comment-footer'> <div class='comment-form'> <a name='comment-form'></a> <h4 id='comment-post-message'>コメントを投稿</h4> <p> </p> <a href='https://www.blogger.com/comment/frame/1931237806126860547?po=9012345409609375399&hl=ja' id='comment-editor-src'></a> <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410' id='comment-editor' name='comment-editor' src='' width='100%'></iframe> <!--Can't find substitution for tag [post.friendConnectJs]--> <script src='https://www.blogger.com/static/v1/jsbin/2315299244-comment_from_post_iframe.js' type='text/javascript'></script> <script type='text/javascript'> BLOG_CMT_createIframe('https://www.blogger.com/rpc_relay.html', '0'); </script> </div> </p> <div id='backlinks-container'> <div id='Blog1_backlinks-container'> </div> </div> </div> <!--Can't find substitution for tag [adEnd]--> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='http://theworldwide2.blogspot.com/2012/03/adobeair-air.html' id='Blog1_blog-pager-newer-link' title='次の投稿'>次の投稿</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='http://theworldwide2.blogspot.com/2012/03/ahxxtgxb.html' id='Blog1_blog-pager-older-link' title='前の投稿'>前の投稿</a> </span> <a class='home-link' href='http://theworldwide2.blogspot.com/'>ホーム</a> </div> <div class='clear'></div> <div class='post-feeds'> <div class='feed-links'> 登録: <a class='feed-link' href='http://theworldwide2.blogspot.com/feeds/9012345409609375399/comments/default' target='_blank' type='application/atom+xml'>コメントの投稿 (Atom)</a> </div> </div> </div></div> </div> </div> <div id='sidebar2-wrapper'> <div class='sidebar section' id='sidebar2'><div class='widget Followers' data-version='1' id='Followers1'> <h2 class='title'>Followers</h2> <div class='widget-content'> <div id='Followers1-wrapper'> <div style='margin-right:2px;'> <div><script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <div id="followers-iframe-container"></div> <script type="text/javascript"> window.followersIframe = null; function followersIframeOpen(url) { gapi.load("gapi.iframes", function() { if (gapi.iframes && gapi.iframes.getContext) { window.followersIframe = gapi.iframes.getContext().openChild({ url: url, where: document.getElementById("followers-iframe-container"), messageHandlersFilter: gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER, messageHandlers: { '_ready': function(obj) { window.followersIframe.getIframeEl().height = obj.height; }, 'reset': function() { window.followersIframe.close(); followersIframeOpen("https://www.blogger.com/followers/frame/1931237806126860547?colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMwNjRCOEMiByMwNjRCOEMqByNGMEY2RkIyByMwNjRCOEM6ByMwNjRCOENCByMwNjRCOENKByMwNjRCOENSByMwNjRCOENaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26hl\x3dja\x26origin\x3dhttp://theworldwide2.blogspot.com"); }, 'open': function(url) { window.followersIframe.close(); followersIframeOpen(url); }, 'blogger-ping': function() { } } }); } }); } followersIframeOpen("https://www.blogger.com/followers/frame/1931237806126860547?colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMwNjRCOEMiByMwNjRCOEMqByNGMEY2RkIyByMwNjRCOEM6ByMwNjRCOENCByMwNjRCOENKByMwNjRCOENSByMwNjRCOENaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26hl\x3dja\x26origin\x3dhttp://theworldwide2.blogspot.com"); </script></div> </div> </div> <div class='clear'></div> </div> </div><div class='widget Attribution' data-version='1' id='Attribution1'> <div class='widget-content' style='text-align: center;'> Powered by <a href='https://www.blogger.com' target='_blank'>Blogger</a>. </div> <div class='clear'></div> </div><div class='widget Profile' data-version='1' id='Profile1'> <h2>About Me</h2> <div class='widget-content'> <dl class='profile-datablock'> <dt class='profile-data'>Max</dt> </dl> <a class='profile-link' href='https://www.blogger.com/profile/12378384562248815485'>詳細プロフィールを表示</a> <div class='clear'></div> </div> </div> <div class='widget BlogArchive' data-version='1' id='BlogArchive1'> <h2>Blog Archive</h2> <div class='widget-content'> <div id='ArchiveList'> <div id='BlogArchive1_ArchiveList'> <ul> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> &#9660;&#160; </span> </a> <a class='post-count-link' href='http://theworldwide2.blogspot.com/2012/'>2012</a> <span class='post-count' dir='ltr'>(83)</span> <ul> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://theworldwide2.blogspot.com/2012/05/'>5月</a> <span class='post-count' dir='ltr'>(9)</span> </li> </ul> <ul> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://theworldwide2.blogspot.com/2012/04/'>4月</a> <span class='post-count' dir='ltr'>(18)</span> </li> </ul> <ul> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> &#9660;&#160; </span> </a> <a class='post-count-link' href='http://theworldwide2.blogspot.com/2012/03/'>3月</a> <span class='post-count' dir='ltr'>(9)</span> <ul class='posts'> <li><a href='http://theworldwide2.blogspot.com/2012/03/phpwebsite-project-top-page.html'>PhpWebSite日本語化プロジェクト Project Top Page - SourceForg...</a></li> <li><a href='http://theworldwide2.blogspot.com/2012/03/zen-cart.html'>Zen-cart のカスタマイズ</a></li> <li><a href='http://theworldwide2.blogspot.com/2012/03/javascript-how-to.html'>JavaScript How To</a></li> <li><a href='http://theworldwide2.blogspot.com/2012/03/interbase-and-ibx-faq-and-tutorials.html'>Interbase And IBX F.A.Q. And Tutorials</a></li> <li><a href='http://theworldwide2.blogspot.com/2012/03/blog-post_24.html'>結婚についての質問です&#12290;現在付き合っている彼女が&#12289;私との会話.. - 人力検索はてな</a></li> <li><a href='http://theworldwide2.blogspot.com/2012/03/adobeair-air.html'>Adobe&#160;AIR * AIR ファイルへの電子署名</a></li> <li><a href='http://theworldwide2.blogspot.com/2012/03/blog-post.html'>ブロック要素とインライン要素/ホームページマスター</a></li> <li><a href='http://theworldwide2.blogspot.com/2012/03/ahxxtgxb.html'>[AhXX[&#165;tgX@B</a></li> <li><a href='http://theworldwide2.blogspot.com/2012/03/twitter-twitterwiki.html'>Twitter - TwitterまとめWiki</a></li> </ul> </li> </ul> <ul> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://theworldwide2.blogspot.com/2012/02/'>2月</a> <span class='post-count' dir='ltr'>(34)</span> </li> </ul> <ul> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://theworldwide2.blogspot.com/2012/01/'>1月</a> <span class='post-count' dir='ltr'>(13)</span> </li> </ul> </li> </ul> </div> </div> <div class='clear'></div> </div> </div></div> </div> <!-- spacer for skins that want sidebar and main to be the same height--> <div class='clear'>&#160;</div> </div> <!-- end content-wrapper --> <div id='footer'> <p> 2009 <a href='http://theworldwide2.blogspot.com/'>notebook</a> All Rights Reserved<br/> Free Blogger Template </p> </div> </div></div> <!-- end outer-wrapper --> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/984859869-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY7ZOHRYLKk4SKNCBRLZkx6ZEhGSOA:1732325814039';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d1931237806126860547','//theworldwide2.blogspot.com/2012/03/blog-post.html','1931237806126860547'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '1931237806126860547', 'title': 'notebook', 'url': 'http://theworldwide2.blogspot.com/2012/03/blog-post.html', 'canonicalUrl': 'http://theworldwide2.blogspot.com/2012/03/blog-post.html', 'homepageUrl': 'http://theworldwide2.blogspot.com/', 'searchUrl': 'http://theworldwide2.blogspot.com/search', 'canonicalHomepageUrl': 'http://theworldwide2.blogspot.com/', 'blogspotFaviconUrl': 'http://theworldwide2.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'ja', 'localeUnderscoreDelimited': 'ja', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22notebook - Atom\x22 href\x3d\x22http://theworldwide2.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22notebook - RSS\x22 href\x3d\x22http://theworldwide2.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22notebook - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/1931237806126860547/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22notebook - Atom\x22 href\x3d\x22http://theworldwide2.blogspot.com/feeds/9012345409609375399/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/d78375fb222d99b3', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': '\u30ea\u30f3\u30af\u3092\u53d6\u5f97', 'key': 'link', 'shareMessage': '\u30ea\u30f3\u30af\u3092\u53d6\u5f97', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Facebook \u3067\u5171\u6709', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': '\xd7', 'key': 'twitter', 'shareMessage': '\xd7 \u3067\u5171\u6709', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Pinterest \u3067\u5171\u6709', 'target': 'pinterest'}, {'name': '\u30e1\u30fc\u30eb', 'key': 'email', 'shareMessage': '\u30e1\u30fc\u30eb', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27ja\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': '\u7d9a\u304d\u3092\u8aad\u3080', 'pageType': 'item', 'postId': '9012345409609375399', 'pageName': '\u30d6\u30ed\u30c3\u30af\u8981\u7d20\u3068\u30a4\u30f3\u30e9\u30a4\u30f3\u8981\u7d20/\u30db\u30fc\u30e0\u30da\u30fc\u30b8\u30de\u30b9\u30bf\u30fc', 'pageTitle': 'notebook: \u30d6\u30ed\u30c3\u30af\u8981\u7d20\u3068\u30a4\u30f3\u30e9\u30a4\u30f3\u8981\u7d20/\u30db\u30fc\u30e0\u30da\u30fc\u30b8\u30de\u30b9\u30bf\u30fc'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': '\u7de8\u96c6', 'linkCopiedToClipboard': '\u30ea\u30f3\u30af\u3092\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u306b\u30b3\u30d4\u30fc\u3057\u307e\u3057\u305f\u3002', 'ok': 'OK', 'postLink': '\u6295\u7a3f\u306e\u30ea\u30f3\u30af'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': '\u30ab\u30b9\u30bf\u30e0', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': '\u30d6\u30ed\u30c3\u30af\u8981\u7d20\u3068\u30a4\u30f3\u30e9\u30a4\u30f3\u8981\u7d20/\u30db\u30fc\u30e0\u30da\u30fc\u30b8\u30de\u30b9\u30bf\u30fc', 'description': ' \u25a0\u30d6\u30ed\u30c3\u30af\u8981\u7d20 \u30d6\u30ed\u30c3\u30af\u8981\u7d20\u3068\u306f\u30c6\u30fc\u30d6\u30eb\u30bf\u30b0\u3084\u30ea\u30b9\u30c8\u30bf\u30b0\u306e\u3088\u3046\u306b\u4e00\u3064\u306e\u6587\u66f8\u306e\u307e\u3068\u307e\u308a\u3067 \u524d\u5f8c\u306b\u6539\u884c\u304c\u5165\u308b\u8981\u7d20\u3067\u3059\u3002 \u4ee5\u4e0b\u306f\u666e\u6bb5\u3088\u304f\u4f7f\u7528\u3059\u308b\u30d6\u30ed\u30c3\u30af\u8981\u7d20\u306e\u4e00\u89a7\u3067\u3059\u3002 \u30d6\u30ed\u30c3\u30af\u8981\u7d20\u306e\u4e2d\u306b\u5165\u308c\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u8981\u7d20\u306f\u6b21\u306e\u3088\u3046\u306a\u30d1\u30bf\u30fc\u30f3\u304c\u3042\u308a\u307e\u3059\u3002 ', 'url': 'http://theworldwide2.blogspot.com/2012/03/blog-post.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 9012345409609375399}}]); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog23', 'meta1', document.getElementById('Blog23'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/2484140117-lbx__ja.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/1964470060-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/2484140117-lbx__ja.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/1964470060-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FollowersView', new _WidgetInfo('Followers1', 'sidebar2', document.getElementById('Followers1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'sidebar2', document.getElementById('Attribution1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar2', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar2', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': '\u8aad\u307f\u8fbc\u307f\u4e2d\x26hellip;'}, 'displayModeFull')); </script> </body> </html>