無料ブログをかんたん作成
無料ブログ作成ならJUGEM(ジュゲム)
ホーム
ブログ作成
ブログを書く
ブログを見る
無料ブログ作成
JUGEM PLUS お申し込み
サービス紹介
JUGEM(無料ブログ)
JUGEM PLUS(有料プラン)
ブログ機能一覧表
デザイン
公式ブログデザイン
PC版
スマートフォン版
ユーザー作成
ユーザー作成
JUGEM を楽しむ
投稿する・みんなとつながる
ブログテーマ
ブログのお題
その他のコンテンツ
芸能人・有名人のブログ
スペシャルインタビュー
JUGEM を楽しむ 一覧
サポート
管理者ページ・マニュアル
FAQ
お知らせ
新着情報
メンテナンス情報
障害情報
おすすめブログ紹介
このページでは JavaScript を使用しています。JavaScript を有効にしてください。
ホーム
>
ブログデザイン一覧
>
ユーザー作成テンプレート「utf」
>
テンプレートHTML・CSSについて
公開されているテンプレートのHTMLに{ad}タグがないものありますので、エラーが表示された場合は{ad}タグを追加してご利用ください。
テンプレートの利用について
弊社が著作権を所有する画像等以外のテンプレートに関する著作権は制作者にあります。弊社提供以外のブログサービスで利用した場合は、その都度制作者の方にご確認ください。
テンプレート名 :
絵ブログsimple
テンプレートイメージ表示ページへ戻る
HTML・CSSをコピーして使う
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset={site_encoding}" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <title>{site_title}</title> <link rel="stylesheet" href="{site_css}" type="text/css" /> <link rel="alternate" type="application/rss+xml" title="RSS" href="{site_rss}" /> <link rel="alternate" type="application/atom+xml" href="{site_atom}" /> <script type="text/javascript" src="./template/js/cookie.js"></script> </head> <body onload="javascript:initval();"> <script type="text/javascript"> <!-- function GetElementsByClassName(tagName,className) { var objRet = new Array(); var objFocus = document.getElementsByTagName(tagName); for (var i=0;i<objFocus.length;i++) { if (objFocus[i].className == className) objRet[objRet.length] = objFocus[i]; } return objRet; } function makeNaviLink(txtLink) { var jsChng = Array('clickThumbnail(',txtLink,');return false;').join(''); var jsRing = Array('focusThumbnail(event,',txtLink,');return false;').join(''); return( Array('onclick="',jsChng,'" onkeypress="',jsChng,'" onmouseover="',jsRing,'" onmouseout="',jsRing,'"').join('') ); } function DisplayEntry(dispLog) { if (!document.body.innerHTML || !document.getElementById || !document.getElementsByTagName) return true; var objEntries = GetElementsByClassName('div','entry'); var localFlag = false; gSlideNum = Number(dispLog); for (var i=0;i<objEntries.length;i++) { var objNavImg = document.getElementById(Array('thumb',i).join('')); if (!objNavImg) { // added 2004/04/08 if (gSlideNum == -1) localFlag = true; break; } objNavImg.firstChild.style.position = 'relative'; if (i != dispLog) { objEntries[i].style.display = 'none'; objNavImg.firstChild.style.borderColor = gThumbLinkColor; objNavImg.firstChild.style.zIndex = '3'; } else { objEntries[i].style.display = 'block'; objNavImg.firstChild.style.borderColor = gThumbActiveColor; objNavImg.firstChild.style.zIndex = '4'; } } if (gSlideNum == -1) { document.getElementById('bloginfo').style.display = 'block'; if (gSlideFlag) SwitchSlide(); return localFlag; // changed 2004/04/08 } else if (document.getElementById('bloginfo').style.display != 'none') { document.getElementById('bloginfo').style.display = 'none'; } } function clickThumbnail(dispNum) { if (gSlideFlag) SwitchSlide(); DisplayEntry(dispNum); } function focusThumbnail(event,dispNum) { if (!event) return; var objFocus = (event.target) ? event.target : event.srcElement; if (objFocus && dispNum != null) { dispNum = Number(dispNum); switch(event.type) { case 'mouseover': if (gThumbZoom) { objFocus.width = objFocus.width + 10; objFocus.height = objFocus.height + 10; objFocus.style.margin = '-5px'; objFocus.style.zIndex = '5'; } objFocus.style.borderColor = gThumbHoverColor; break; case 'mouseout': if (gThumbZoom) { objFocus.width = objFocus.width - 10; objFocus.height = objFocus.height - 10; objFocus.style.margin = '0px'; objFocus.style.zIndex = '3'; } objFocus.style.borderColor = (dispNum == gSlideNum) ? gThumbActiveColor : gThumbLinkColor; break; default: return; } } } function DisplayThumbnails(dispLog) { var obEntries = GetElementsByClassName('div','entry'); var objImages = new Array(); for (var i=0;i<obEntries.length;i++) { var checkImage = obEntries[i].getElementsByTagName('img'); if (checkImage.length == 0) { objImages[i] = gNoImage; } else { var checkFlag = true; for (var j=0;j<checkImage.length;j++) { if (checkImage[j].className == 'pict' && checkFlag) { objImages[i] = checkImage[j].getAttribute("src"); } else if (checkImage[j].className == 'thumb') { objImages[i] = checkImage[j].getAttribute("src"); checkFlag = false; } } if (!objImages[i]) objImages[i] = gNoImage; } } var outputText = ''; for (var i=0;i<objImages.length;i++) { outputText = Array(outputText,'<a href="#" ',makeNaviLink(i),' id="thumb',i,'">').join(''); outputText = Array(outputText,'<img src="',objImages[i],'" width="',gThumbW,'" height="',gThumbH,'" /></a>').join(''); } return outputText; } function SwitchSlide() { if (!document.body.innerHTML || !document.getElementById || !document.getElementsByTagName) return true; var objImages = GetElementsByClassName('div','entry'); var blogMode = window.location.search; // added 2004/04/08 if ( blogMode.indexOf('?eid') > -1 || blogMode.indexOf('?mode=comment') > -1 || blogMode.indexOf('?pid') > -1 ) return; // added 2004/04/08 if ( gSlideFlag ) { document.getElementById('naviauto').firstChild.nodeValue = 'auto'; gSlideFlag = false; window.clearTimeout(gSlideTimer); } else { document.getElementById('naviauto').firstChild.nodeValue = 'stop'; gSlideFlag = true; if (gSlideNum == -1) gSlideNum = 0; SlideShow(gSlideNum,objImages.length); } } function TreeList(idName) { var treeText = '「ヘ'; var objFocus = document.getElementById(idName); if (!objFocus) return; var objLists = objFocus.getElementsByTagName('li'); var listBase = new Array(); var listElem = new Array(); var outText = new Array(); if (objLists.length > 0) { for (i = 0;i < objLists.length;i++) { var txtList = objLists[i].innerHTML.split('「ヘ'); var flagCheck = true; var tempElem = new Array(treeText,txtList[1],'<br />'); var elemText = tempElem.join(''); for (j = 0; j < listBase.length; j++) { if ( listBase[j].indexOf(txtList[0]) > -1 ) { flagCheck = false; listElem[j] += elemText; } } if (flagCheck) { listBase[listBase.length] = txtList[0]; listElem[listElem.length] = elemText; } } outText[outText.length] = '<ul>\n'; for (i = 0;i < listBase.length;i++) { outText[outText.length] = '<li>'; outText[outText.length] = listBase[i]; outText[outText.length] = listElem[i]; outText[outText.length] = '</li>\n'; } outText[outText.length] = '</ul>\n'; objFocus.innerHTML = outText.join(''); } } function InitPhotoBlog() { if (!document.body.innerHTML || !document.getElementById || !document.getElementsByTagName) return true; var blogMode = window.location.search; var blogHash = window.location.hash; blogMode = (blogMode != '') ? blogMode.slice(1) : ''; blogHash = (blogHash != '') ? blogHash.slice(1) - 0 : 0; document.getElementById('bloginfo').style.display = 'none'; if ( blogMode.indexOf('eid') == -1 && blogMode.indexOf('mode=comment') == -1 && blogMode.indexOf('pid') == -1 ) { var outputText = ''; var thumbnailBody = DisplayThumbnails(blogHash); outputText = Array(outputText,'<dl class="thumbnail"><dt>',gThumbTitle,'</dt>\n').join(''); outputText = Array(outputText,'<dd>',thumbnailBody,'</dd></dl>').join(''); document.getElementById('thumbnailbar').innerHTML = outputText; DisplayEntry(blogHash); } else { // changed 2004/04/08 document.getElementById('bloginfo').style.display = 'block'; } TreeList('infocom'); TreeList('infotb'); } // --> </script> <table border="0" cellspacing="0" cellpadding="0" align="center"> <!--_mainpart_--> <tr valign="top"> <!--_bgn_leftside_--> <td width="480" class="back"> <!-- BEGIN title --> <div class="mainhead"> <h1 id="top" class="site_title">{blog_name}</h1> <p class="description">{blog_description}</p> </div> <!-- END title --> <ul id="navi" class="navigation"> <li><a href="./" id="navilatest">latest</a> <!-- BEGIN page --> {prev_page_link} {next_page_link} <!-- END page --> </li> <li><a href="./?search=%3Cimg" id="naviall">all</a></li> <li><a href="#bloginfo" onclick="return DisplayEntry(-1)" onkeypress="return DisplayEntry(-1)">info</a></li> </ul> <div id="thumbnailbar"> </div> <!-- BEGIN category --> <div class="categories"> {category_list} </div> <!-- END category --> <!-- BEGIN entry --> <div class="entry"> <div class="entry_title">{entry_title}</div> <div class="entry_body"> {entry_description} </div> <a name="sequel"></a> <div class="entry_more"> {entry_sequel} </div> <div class="entry_state"> | {entry_date} | {entry_time} | {comment_num} | {trackback_num} | </div> <div class="entry_author" style="text-align:right;"> [{category_name}] Posted by {user_name} </div> </div> {trackback_auto_discovery} <!-- END entry --> <!-- BEGIN comment_area --> <a name="comments"></a> <div class="entry"> <div class="entry_date">コメント</div> <!-- BEGIN comment --> <div class="entry_body"> {comment_description} </div> <div class="entry_state"> | {comment_name} | {comment_time} | </div> <!-- END comment --> <div class="entry_date">コメントする</div> <div class="entry_body"> <form name="comment_area" id="comment_area" action="./?mode=comment" method="post"> <input type="hidden" name="entry_id" value="{entry_id}" /> <label for="name">name:</label><br/> <input type="text" tabindex="1" name="name" id="name" value="{cookie_name}" /><br /> <label for="email">email:</label><br> <input type="text" tabindex="2" name="email" id="email" value="{cookie_email}" /><br /> <label for="url">url:</label><br> <input type="text" tabindex="3" name="url" id="url" value="{cookie_url}" /><br /> <label for="description">comments:</label><br /> <textarea tabindex="4" id="description" name="description" rows="10" cols="50" style="width:400px;"></textarea><br /> <br /> <input tabindex="5" type="submit" value="コメント送信" onclick="javascript:setval();" /> <input type="checkbox" name="set_cookie" value="1" id="set_cookie"> <label for="set_cookie">Cookieに登録</label> </form> </div> </div> <!-- END comment_area --> <!-- BEGIN trackback_area --> <a name="trackback"></a> <div class="entry"> <div class="entry_date">この記事のトラックバックURL</div> <div class="entry_body"> {trackback_url} </div> <div class="entry_date">トラックバック</div> <!-- BEGIN trackback --> <div class="entry_title">{trackback_title}</div> <div class="entry_body">{trackback_excerpt}</div> <div class="entry_state"> | {trackback_blog_name} | {trackback_time} | </div> <!-- END trackback --> </div> <!-- END trackback_area --> <!-- BEGIN profile_area --> <div class="entry"> <div class="entry_date">プロフィール</div> <div class="entry_title">{profile_name}</div> <div class="entry_body">{profile_description}</div> </div> <!-- END profile_area --> <div id="bloginfo"> <!-- BEGIN selected_entry --> <div class="linktitle"> ENTRIES </div> <div class="linktext"> {selected_entry_list} </div> <!-- END selected_entry --> <!-- BEGIN recent_comment --> <div class="linktitle"> RECENT COMMENTS </div> <div class="linktext"> {recent_comment_list} </div> <!-- END recent_comment --> <!-- BEGIN recent_trackback --> <div class="linktitle"> RECENT TRACKBACK </div> <div class="linktext"> {recent_trackback_list} </div> <!-- END recent_trackback --> <!-- BEGIN link --> <div class="linktitle"> LINKS </div> <div class="linktext"> {link_list} </div> <!-- END link --> <!-- BEGIN profile --> <div class="linktitle"> PROFILE </div> <div class="linktext"> {user_list} </div> <!-- END profile --> <!-- search --> <form method="get" action=""> <div class="search"> Search this site. </div> <div class="search_box"> <input id="search" name="search" size="20" style="width:140px" class="form" /> <input type="submit" value="Search" class="button" /> </div> </form> <!-- /search/ --> <!-- BEGIN freespace1 --> <div class="linktitle">{freespace_title1}</div> <div class="linktext">{freespace_contents1}</div> <!-- END freespace1 --> <!-- BEGIN freespace2 --> <div class="linktitle">{freespace_title2}</div> <div class="linktext">{freespace_contents2}</div> <!-- END freespace2 --> <!-- BEGIN freespace3 --> <div class="linktitle">{freespace_title3}</div> <div class="linktext">{freespace_contents3}</div> <!-- END freespace3 --> <!-- BEGIN freespace4 --> <div class="linktitle">{freespace_title4}</div> <div class="linktext">{freespace_contents4}</div> <!-- END freespace4 --> <!-- BEGIN freespace5 --> <div class="linktitle">{freespace_title5}</div> <div class="linktext">{freespace_contents5}</div> <!-- END freespace5 --> <!-- powered --> <div class="linktitle"> OTHERS </div> <div class="linktext"> <ul> <li><a href="./admin/">管理者ページ</a></li> <li><a href="./?mode=rss">RSS1.0</a></li> <li><a href="./?mode=atom">Atom0.3</a></li> </ul> </div> <!-- /powered/ --> </div> <script type="text/javascript"> <!-- var gSlideInterval = 2000; /* スライドショーのタイムインターバル 1000 = 1秒 */ var gThumbTitle = ''; /* サムネイルタイトル */ var gThumbActiveColor = '#ff0'; /* サムネイルアクティブ画像のボーダーカラー */ var gThumbLinkColor = '#fff'; /* サムネイルリンク画像のボーダーカラー */ var gThumbHoverColor = '#999'; /* サムネイルホバー画像のボーダーカラー */ var gThumbW = 44; /* サムネイル画像の幅 */ var gThumbH = 44; /* サムネイル画像の高さ */ var gThumbZoom = true; /* サムネイル画像のズーム機能 true = on,false = off */ var gNoImage = './template/photo/img/noimage.gif'; /* 画像ファイルのないエントリに対するサムネイル画像 */ var gSlideTimer,gSlideFlag,gSlideNum = 0; InitPhotoBlog(); // --> </script> </td></tr><tr><td> <!-- powered --> <br><br><br> {ad}{powered} <!-- /powered/ --> </td></tr> </table> </body> </html>
CSS
body { margin: 0px 0px 0px 0px; } a:link {color:#778899; text-decoration:none;} a:visited {color:#778899; text-decoration:none;} a:active {color:#708090; text-decoration:underline;} a:hover {color:#000000; text-decoration:underline;} .mainhead{ height:70px; } h1 { margin: 10px 0px 10px 20px; } ul { margin: 0px 0px 0px 10px; padding: 0px; /* list-style-image: url(./template/flat/img/arrow.gif);*/ list-style-type : square ; } input, textarea { border: 1px solid #666; } .site_title { font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "MS ゴシック", "Osaka‐等幅"; /* font-weight: bolder;*/ color: #000000; margin: 10px 20px 5px 20px; text-align: right; font-size: 20px; letter-spacing: 5px; } .site_title a, .site_title a:link, .site_title a:visited, .site_title a:active, .site_title a:hover { color:#666666; text-decoration:none; } .description { font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "MS ゴシック", "Osaka‐等幅"; font-size: 12px; font-weight: bolder; color: #666666; margin: 5px 20px 5px 20px; text-align: right; } .entry { /* background: #FFFFFF;*/ margin: 0px 10px 10px 10px; padding: 5px 15px; border: 1px solid #cccccc; } .entry_navi{ font-size:10px; text-align:center; } .entry_date { font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "MS ゴシック", "Osaka‐等幅"; font-size: 12px; font-weight: bolder; color: #000000; margin: 15px 0px 15px 0px; } .entry_title { font-family: "Verdana"; font-size: 14px; font-weight: bolder; color: #666666; margin: 10px 0px 10px 0px; padding-bottom: 3px; border-bottom: 1px solid #CCCCCC; } .entry_author { font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "MS ゴシック", "Osaka‐等幅"; font-size: 10px; font-weight: normal; color: #000000; margin: 15px 0px 15px 0px; } .entry_body { font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "MS ゴシック", "Osaka‐等幅"; font-size: 12px; line-height: 170%; color: #666666; margin: 15px 0px 15px 0px; } .entry_more { font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "MS ゴシック", "Osaka‐等幅"; font-size: 11px; line-height: 170%; color: #333333; margin: 15px 30px 10px 20px; } .entry_state { font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "MS ゴシック", "Osaka‐等幅"; font-size: 10px; color: #999999; margin: 20px 0px 25px 0px; } blockquote { font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "MS ゴシック", "Osaka‐等幅"; font-size: 11px; color: #808080; margin: 20px 10px 20px 10px; padding: 10px; border-top: 1px solid #CCCCCC; border-bottom: 1px solid #CCCCCC; } .pict { border-width: 3px; border-style: solid; border-color: #DCE3E3 #C1C1C1 #C1C1C1 #DCE3E3; } .linktitle { font-family: "Verdana"; font-size: 12px; font-weight: bolder; color: #666666; line-height: 100%; margin: 0px 10px 0px 10px; padding: 2px; border-bottom: 1px solid #CCCCCC; } .linktext { font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "MS ゴシック", "Osaka‐等幅"; font-size: 11px; color: #333333; line-height: 170%; margin: 1px 10px 20px 10px; padding: 10px; } .back { margin: 5px; padding: 0px 0px 10px 0px; /* background-color: #FFFFFF;*/ /*background: url(http://homepage3.nifty.com/onigiri/whitecotton.gif);*/ border-left: 1px solid #808080; border-right: 1px solid #808080; border-bottom: 1px solid #808080; } /* SEARCH---------------------------------------------------------------------- */ .search { font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "MS ゴシック", "Osaka‐等幅"; font-size: 11px; color: #333333; line-height: 170%; margin: 20px 0px 5px 20px; } .search_box { margin: 0px 0px 5px 20px; } /* FOOTER---------------------------------------------------------------------- */ .copyright { font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "MS ゴシック", "Osaka‐等幅"; font-size: 11px; color: #333333; line-height: 170%; margin: 0px 0px 0px 20px; } /* CLOCK---------------------------------------------------------------------- */ .clock { margin: 0px 10px 0px 10px; background: #FFFFFF; } /* CALENDAR---------------------------------------------------------------------- */ .calendar { font-family: "Verdana"; font-size: 10px; color: #BBBBBB; line-height: 140%; background: #FFFFFF; margin: 1px 10px 20px 10px; padding: 3px 0px 10px 0px; } .cell { /*background: url(./template/flat/img/cell.gif) no-repeat;*/ width: 25px; height: 13px; padding: 1px; } .weekday { font-size: 9px; text-align: center; width: 25px; height: 13px; padding: 1px; } .today { background-color: #F5F5F5; } .jugem_bana{ margin: 20px 1px 10px 0px; } /* [pictures] */ img.pict { display: block; margin-right: auto; margin-left: auto; border: 0px none #fff; } img.thumb { display: none; } /* [bloginfo] */ div#bloginfo { display: block; } div#bloginfo dl { margin: 5px; padding: 0px; } div#bloginfo dl dt { margin: 0px; padding: 0px; font-weight: bold; font-size: 12px; } div#bloginfo dl dd { margin: 0px; padding: 0px; } /* [footer] */ div.mainfoot { clear: both; font-size: 10px; } div.mainfoot a { color: #446; text-decoration: none; border: 0px none #fff; } div.mainfoot img { color: #fff; border: 0px none #fff; } address.copyright { font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W6", "平成明朝","MS P明朝", "Georgia"; font-size: 11px; color: #666666; margin: 10px 0px 10px 0px; text-align: center; } p.link2top { margin: 20px; padding: 0px; text-align: right; } #ad{ clear: both; font-size: 10px; text-align: center; } /* [side navigation] */ .page { clear: both; text-align: center; margin: 0px; padding: 5px 0px 15px 0px; font-size: 10px; } .page a { text-decoration: none; } .categories{ width: 460px; list-style: none; margin: 5px auto 15px auto; padding: 2px; text-align: center; } .categories ul li { display: inline; /* display: block;*/ float: left; margin: 1px 5px 1px 1px; padding: 0px; text-align: center; font-size: 12px; } .categories ul li a { text-decoration: none; color:#666; } ul.navigation { width: 460px; list-style: none; margin: px 5px 0px 5px; padding: 0px; text-align: center; } ul.navigation li { display: inline; list-style: none; } ul.navigation li a { width: 60px; display: block; float: left; margin: 1px 1px 1px 1px; padding: 0px; text-align: center; text-decoration: none; font-weight: bold; font-size: 12px; color: #444; border: 1px solid #999; background-color: #ccc; } ul.navigation li a:link { color: #444; } ul.navigation li a:visited { color: #444; } ul.navigation li a:active { color: #444; } ul.navigation li a:hover { color: #555; border: 1px solid #aaa; background-color: #ddd; } ul.links { list-style: none; margin: 0px; padding: 0px; text-align: center; } ul.links li { margin: 5px 0px 5px 0px; padding: 0px; list-style: none; } /* [side navigation - thumnails] */ div.pictnavi { font-weight: bold; font-size: 12px; margin: 0px; padding: 0px; text-align: center; } div.pictnavi span { color: #ccc; margin: 0px 1em 0px 1em; } div.pictnavi a { margin: 0px 1em 0px 1em; } dl.thumbnail { clear: both; width: 465px; margin: 5px 0px 5px 0px; padding: 0px; margin-left: auto; margin-right: auto; } dl.thumbnail dt { font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W6", "平成明朝","MS P明朝", "Georgia"; font-size: 11px; font-weight: bold; color: #666; margin: 0px; padding: 0px 0px 0px 0px; background-color: #ccc; text-align: center; } dl.thumbnail dd { margin: 0px; padding: 2px 2px 2px 2px; background-color: #ccc; } dl.thumbnail dd a { border: 0px none #ccc; } dl.thumbnail dd span img { border: 1px solid yellow; } dl.thumbnail dd a img { border: 1px solid #fff; } dl.thumbnail dd a { border: 0px none #ccc; }
高品質デザイン選び放題で、あなた好みのブログに。今すぐブログ作成!
今すぐ
無料ブログ
をはじめよう! ≫
ブログ作成
利用規約
|
プライバシーポリシー
|
推奨環境
|
会社概要
|
サイトマップ
Copyright © 2003-2021 株式会社メディアーノ All Rights Reserved.
ページの先頭へ↑