<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>webアレコレ</title>
        <link>http:///web.netkatuyou.com/</link>
        <description></description>
        <language>ja</language>
        <copyright>Copyright 2010</copyright>
        <lastBuildDate>Sun, 21 Feb 2010 02:39:18 +0900</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>テスト投稿</title>
            <description>テスト投稿。</description>
            <link>http:///web.netkatuyou.com/2010/02/21-023918.php</link>
            <guid>http:///web.netkatuyou.com/2010/02/21-023918.php</guid>
            
            
            <pubDate>Sun, 21 Feb 2010 02:39:18 +0900</pubDate>
        </item>
        
        <item>
            <title>Word Pressを使ってサイト作成してみました。</title>
            <description><![CDATA[ Word Pressの勉強がてら、新しくサイトを作成しました。

<a href="http://wqce.netkatuyou.com/">http://wqce.netkatuyou.com/</a>


Word Pressの構造、テーマの作成等とまどった部分がありましたが、
なんとか思ったとおりのモノが作れたかなあ、と思います。
ブログの内容がちょっと当ブログとかぶる部分があるので、
統合を含めてちょっと検討中です。]]></description>
            <link>http:///web.netkatuyou.com/2009/07/28-094836.php</link>
            <guid>http:///web.netkatuyou.com/2009/07/28-094836.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Word Press</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">お知らせ</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">Word Press</category>
            
            <pubDate>Tue, 28 Jul 2009 09:48:36 +0900</pubDate>
        </item>
        
        <item>
            <title>シンプルなアコーディオンパネル「Simple Toggle」</title>
            <description><![CDATA[シンプルなアコーディオンパネル「Simple Toggle」をご紹介。<br><br>

<a href="http://www.sohtanaka.com/web-design/easy-toggle-jquery-tutorial/">Simple Toggle with CSS & jQuery</a>
<br><br>
まずHTMLは以下のようになります。<br>

<pre class="xml" name="code">
<h2 class="trigger"><a href="#">Toggle Header</a></h2>
<div class="toggle_container">
	<div class="block">
		<h3>Content Header</h3>
		<!--Content-->
	</div>
</div>
</pre>

そしてCSS。<br>
<pre class="xml" name="code">
h2.trigger {
	padding: 0 0 0 50px;
	margin: 0 0 5px 0;
	background: url(h2_trigger_a.gif) no-repeat;
	height: 46px;
	line-height: 46px;
	width: 450px;
	font-size: 2em;
	font-weight: normal;
	float: left;
}
h2.trigger a {
	color: #fff;
	text-decoration: none;
	display: block;
}
h2.trigger a:hover { color: #ccc; }
h2.active {background-position: left bottom;} /*--When toggle is triggered, it will shift the image to the bottom to show its "opened" state--*/
.toggle_container {
	margin: 0 0 5px;
	padding: 0;
	border-top: 1px solid #d6d6d6;
	background: #f0f0f0 url(toggle_block_stretch.gif) repeat-y left top;
	overflow: hidden;
	font-size: 1.2em;
	width: 500px;
	clear: both;
}
.toggle_container .block {
	padding: 20px; /*--Padding of Container--*/
	background: url(toggle_block_btm.gif) no-repeat left bottom; /*--Bottom rounded corners--*/
}
</pre>
<br>CSSは記述がちょっと長いので、<br>
実際に使用する場合は、外部CSSとして読み込むと良いと思います。<br>
そしてjQueryを使用するので当然以下のようにjQueryを読み込み、
<pre class="xml" name="code">
<script src="jquery.js" type="text/javascript"></script>
</pre>
そして下記スクリプトをhead内に記述します。
<pre class="javascript" name="code">
$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".toggle_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h2.trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$("h2.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow");
	});

})
</pre>
サンプルが公開されており以下URLより確認できます。<br><br>
<a href="http://www.sohtanaka.com/web-design/examples/toggle/">http://www.sohtanaka.com/web-design/examples/toggle/</a>
<br><br>
また少しCSSに手を加えてサンプルを作成してみたので、<br>
こちらも参考にしていただけたらと思います。<br><br>
<a href="http://web.netkatuyou.com/ajax_sample/simple_toggle/sample.html">Simple Toggleサンプル</a><br><br>

]]></description>
            <link>http:///web.netkatuyou.com/2009/06/25-134720.php</link>
            <guid>http:///web.netkatuyou.com/2009/06/25-134720.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Ajax</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">Ajax</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">jQuery</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">Simple Toggle</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">アコーディオン</category>
            
            <pubDate>Thu, 25 Jun 2009 13:47:20 +0900</pubDate>
        </item>
        
        <item>
            <title>CSSのborderで枠線をカスタマイズ。</title>
            <description><![CDATA[ CSSのborderプロパティを使用することで、枠線のデザインを工夫することができます。
ではまずは実例を紹介。

<div style="border:solid #888888 1px;">
枠線をCSSでカスタマイズ。<br>
枠線をCSSでカスタマイズ。</div>
<br>
<div style="border:double #888888 4px;">
枠線をCSSでカスタマイズ。<br>
枠線をCSSでカスタマイズ。</div>
<br>
<div style="border:dashed #FF0000 1px;">
枠線をCSSでカスタマイズ。<br>
枠線をCSSでカスタマイズ。</div>
<br>
<div style="border:dotted #FF0000 1px;">
枠線をCSSでカスタマイズ。<br>
枠線をCSSでカスタマイズ。</div>
<br>
borderプロパティでは、枠線のスタイル、太さ、色の指定ができます。<br>
上記サンプルのCSSのコードは以下になります。(上から順に)
<pre name="code" class="xml">
border:solid #888888 1px;
border:double #888888 4px;
border:dashed #FF0000 1px;
border:dotted #FF0000 1px;
</pre>
なお、borderプロパティについては<a href="http://www.htmq.com/">HTMLクイックリファレンス</a>さんの<br>
<a href="http://www.htmq.com/style/border.shtml">border－スタイルシートリファレンス</a>
<br>のほか、多数のサイトで解説されているので、詳しくはそちらで確認してみてください。<br>]]></description>
            <link>http:///web.netkatuyou.com/2009/06/20-102531.php</link>
            <guid>http:///web.netkatuyou.com/2009/06/20-102531.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">css小技</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">border</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">css</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">枠線</category>
            
            <pubDate>Sat, 20 Jun 2009 10:25:31 +0900</pubDate>
        </item>
        
        <item>
            <title>web creators 7月号（2009）</title>
            <description><![CDATA[恒例、web creatorsの最新号をチェック。

<div class="amazlet-box" style="margin-bottom:0px;"><div class="amazlet-image" style="float:left;"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B0029VBSEK/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank"><img src="http://ecx.images-amazon.com/images/I/51IanVurGgL._SL160_.jpg" alt="Web creators (ウェブクリエイターズ) 2009年 07月号 [雑誌]" style="border: none;" /></a></div><div class="amazlet-info" style="float:left;margin-left:15px;line-height:120%"><div class="amazlet-name" style="margin-bottom:10px;line-height:120%"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B0029VBSEK/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank">Web creators (ウェブクリエイターズ) 2009年 07月号 [雑誌]</a><div class="amazlet-powered-date" style="font-size:7pt;margin-top:5px;font-family:verdana;line-height:120%">posted with <a href="http://www.amazlet.com/browse/ASIN/B0029VBSEK/uniquenet-22/ref=nosim/" title="Web creators (ウェブクリエイターズ) 2009年 07月号 [雑誌]" target="_blank">amazlet</a> at 09.06.05</div></div><div class="amazlet-detail"><br />インプレスコミュニケーションズ <br /></div><div class="amazlet-link" style="margin-top: 5px"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B0029VBSEK/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank">Amazon.co.jp で詳細を見る</a></div></div><div class="amazlet-footer" style="clear: left"></div></div>


今月号の特集は

<strong>「WEB制作トラブル速戦即決術！」</strong>

私も経験したことがあるトラブル事例もたくさんありました。
時間が無く、緊急の時に今月号がとてもお役立ちだと思います。

巻末特集は

<strong>「PCサイト制作の知識をフル活用するケータイWEB企画&デザイン手法」</strong>

PCサイトとケイタイサイトの違いが分かりやすく解説されています。
ケイタイサイトを作る際のポイントや、Flash Liteについてなどなど、
ケイタイサイトを作ろう！と言う方におススメの内容です。

それから、今月号は「CSSプロパティデザイン ミニ辞典」が付属されています。
小冊子で持ち運びにも便利なので、とても使える1冊だと思います。






]]></description>
            <link>http:///web.netkatuyou.com/2009/06/05-112928.php</link>
            <guid>http:///web.netkatuyou.com/2009/06/05-112928.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">参考書籍</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">css</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">web creators</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">WEB制作トラブル</category>
            
            <pubDate>Fri, 05 Jun 2009 11:29:28 +0900</pubDate>
        </item>
        
        <item>
            <title>Mac のドックメニュー風「CSS Dock Menu」</title>
            <description><![CDATA[Macのドックメニューが再現できる「CSS Dock Menu」のご紹介。<br><br>

<a href="http://www.ndesign-studio.com/blog/design/css-dock-menu/">CSS Dock Menu</a>
<br><br>

使い方はまず上記サイトの<b>Download CSS Dock Menu</b>から必要なファイルをダウンロード。<br>
そしてhead部分に以下のファイルを読み込ませます。
<pre name="code" class="xml">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/interface.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
</pre>

そしてIE用のハックで
<pre name="code" class="xml">
<!--[if lt IE 7]>
<style type="text/css">
.dock img { behavior: url(iepngfix.htc) }
</style>
<![endif]->
</pre>
この様に記述し、フォルダ内に<b>iepngfix</b>というファイルを配置します。<br>
そしてもう一つ以下のjavascriptを記述します。
<pre name="code" class="javascript">
<script type="text/javascript">
$(document).ready(
function()
{
$('#dock2′).Fisheye(
{
maxWidth: 60,
items: 'a',
itemsText: 'span',
container: '.dock-container2′,
itemWidth: 40,
proximity: 80,
alignment : 'left',
valign: 'bottom',
halign : 'center'
}
)
}
);
</script>
</pre>
<a href="http://www.ndesign-studio.com/demo/css-dock-menu/css-dock.html">CSS Dock のMenu デモページ</a>を確認すると、<br>
このjavascriptの部分はbody要素に書かれていましたが、head部分に記述しても動きました。<br>
ただし、jquery.jsより前に記述すると動かないのでご注意を。<br>
スクリプト関連は以上で、次にhtmlの部分。<br>
<pre name="code" class="xml">
<!--top dock -->
<div class="dock" id="dock">
<div class="dock-container">
<a class="dock-item" href="#"><img src=""  /><span>ここにテキスト</span></a>
<a class="dock-item" href="#"><img src=""  /><span>ここにテキスト</span></a>
<a class="dock-item" href="#"><img src=""  /><span>ここにテキスト</span></a>
</div></div>
<!--bottom dock -->
<div class="dock" id="dock2">
<div class="dock-container2">
<a class="dock-item" href="#"><img src=""  /><span>ここにテキスト</span></a>
<a class="dock-item" href="#"><img src=""  /><span>ここにテキスト</span></a>
<a class="dock-item" href="#"><img src=""  /><span>ここにテキスト</span></a>
</pre>

配置をカスタマイズする場合は、最初に読み込んでいる<strong>style.css</strong>を編集します。<br>
CSSでposition: relative;を使用したりしているので、<br>
配置をカスタマイズする際は、少々CSSの知識が必要になるかと思います。<br>
それと使用する画像についてですが、デモページでは128px×128pxで作成されています。<br>デモページのように、反射したような画像を作成するときれいに見れるかと思います。<br>

]]></description>
            <link>http:///web.netkatuyou.com/2009/06/02-124342.php</link>
            <guid>http:///web.netkatuyou.com/2009/06/02-124342.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Ajax</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">CSS Dock Menu</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">jQuery</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">Mac</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">ドックメニュー</category>
            
            <pubDate>Tue, 02 Jun 2009 12:43:42 +0900</pubDate>
        </item>
        
        <item>
            <title>Movable Type 4.24 にて脆弱性。</title>
            <description><![CDATA[アナウンスから少し経ちましたが、Movable Type 4.24 にて脆弱性が見つかったそうです。

<a href="http://www.movabletype.jp/blog/security-info_mt424.html">Movable Type 4.24 でのセキュリティ上の問題について</a>

<blockquote style="background-color:#DDDDDD;">
アプリケーション上の入力項目の一部において、適切に入力エスケープ処理されないため、<br>クロスサイトスクリプティングが発生しうる。
</blockquote>


対処方法はMovable Type 4.25にアップグレードする、とのことです。
それとアップグレード後、グローバルテンプレートの初期化が必要とのこと。
なおグローバルテンプレートの初期化に関しては、バージョンが4.24のモノが対象だそうで、
それ以外のバージョンは4.25にアップグレードするだけで良いそうです。




]]></description>
            <link>http:///web.netkatuyou.com/2009/05/03-010240.php</link>
            <guid>http:///web.netkatuyou.com/2009/05/03-010240.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Movable Type</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">4.25</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">Movable Type</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">クロスサイトスクリプティング</category>
            
            <pubDate>Sun, 03 May 2009 01:02:40 +0900</pubDate>
        </item>
        
        <item>
            <title>web creators 6月号（2009）</title>
            <description><![CDATA[恒例、web creatorsのご紹介。

<div class="amazlet-box" style="margin-bottom:0px;"><div class="amazlet-image" style="float:left;"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B002677SQE/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank"><img src="http://images-jp.amazon.com/images/G/09/icons/books/comingsoon_books.gif" alt="Web creators (ウェブクリエイターズ) 2009年 06月号 [雑誌]" style="border: none;" alt="no image" /></a></div><div class="amazlet-info" style="float:left;margin-left:15px;line-height:120%"><div class="amazlet-name" style="margin-bottom:10px;line-height:120%"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B002677SQE/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank">Web creators (ウェブクリエイターズ) 2009年 06月号 [雑誌]</a><div class="amazlet-powered-date" style="font-size:7pt;margin-top:5px;font-family:verdana;line-height:120%">posted with <a href="http://www.amazlet.com/browse/ASIN/B002677SQE/uniquenet-22/ref=nosim/" title="Web creators (ウェブクリエイターズ) 2009年 06月号 [雑誌]" target="_blank">amazlet</a> at 09.04.30</div></div><div class="amazlet-detail"><br />インプレスコミュニケーションズ <br /></div><div class="amazlet-link" style="margin-top: 5px"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B002677SQE/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank">Amazon.co.jp で詳細を見る</a></div></div><div class="amazlet-footer" style="clear: left"></div></div>


今月号の特集は

<strong>卓越したWEBビジュアル表現のエッセンス</strong>

ということでデザイン等で優れているサイトの実例をもとに、
デザインの傾向、考え方などが紹介されていました。
サイトのデザインを考える際に、とても参考になるかと思います。

巻末特集は

<strong>WEBデザインの賞&コンテストガイド2009</strong>

国内外のwebに関するアワードの概要、受賞作品などが紹介されています。
個人的にはいくつか知っているアワードもありましたが、
初めて名前を聞いたものの方が多かったです。
これを機に、アワード等挑戦してみたいなあと思います。
]]></description>
            <link>http:///web.netkatuyou.com/2009/05/01-211855.php</link>
            <guid>http:///web.netkatuyou.com/2009/05/01-211855.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">参考書籍</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">web creators</category>
            
            <pubDate>Fri, 01 May 2009 21:18:55 +0900</pubDate>
        </item>
        
        <item>
            <title>サーバー移転時のMovable Typeの設定。</title>
            <description><![CDATA[ 今回レンタルサーバーを移転するにあたって、行った作業をご紹介。<br>
まずMTのバックアップでエクスポートの機能があるんですが、<br>
テンプレート等のデータは引き継がれないようなので、<br>
MySQLのデータのエクスポートを行いました。<br>
なおMySQLのエクスポートに関しては<a href="http://www.heartlogic.jp/">Heartlogic</a>さんの<br><br>
<a href="http://www.heartlogic.jp/archives/2009/03/mysql_movable_type.html">MySQLのエクスポートでMovable Typeを引っ越しする方法</a>
<br><br>
の記事が大変参考になりました。<br><br>
移転先のレンタルサーバーでデータベースを作成し、<br>
エクスポートしたデータを今度はインポートし、データベースに関しては完了。<br>
そして移転前のMTのフォルダをローカルにコピーし、<br>
それから移転先のサーバーにアップロード。<br>
そして管理画面に入ろうとしたところ、ここでエラーが。<br>
何で入れない？と原因を探っていたところ、<br>
<strong>mt-config.cgi</strong>の設定を修正しなければならないと判明。<br>
<pre name="code" class="xml">
#======== REQUIRED SETTINGS ==========

CGIPath        ****
StaticWebPath  ****

#======== DATABASE SETTINGS ==========

ObjectDriver DBI::mysql
Database ****
DBUser ****
DBPassword ****
DBHost ****
</pre>

パス、データベースの設定を移転先のサーバーの設定に合わせて修正。<br>
そして管理画面にアクセスしたころ、エラーも出ず無事ログインできました。<br><br>
以上今回行った作業となります。<br>
mt-config.cgiの設定は意外と忘れやすい（自分だけかも＾＾；）<br>
点だと思うので、サーバー移転の際にはぜひご注意を。<br>


]]></description>
            <link>http:///web.netkatuyou.com/2009/04/30-115950.php</link>
            <guid>http:///web.netkatuyou.com/2009/04/30-115950.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Movable Type</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">Movable Type</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">mt-config.cgi</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">MySQL</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">エクスポート</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">サーバー移転</category>
            
            <pubDate>Thu, 30 Apr 2009 11:59:50 +0900</pubDate>
        </item>
        
        <item>
            <title>ロリポップからチカッパに移転しました。</title>
            <description><![CDATA[ このたび、レンタルサーバーを<A HREF="http://px.a8.net/svt/ejp?a8mat=UDEVY+29KENM+348+65MEA" target="_blank">ロリポップ！</A>
<img border="0" width="1" height="1" src="http://www13.a8.net/0.gif?a8mat=UDEVY+29KENM+348+65MEA" alt="">から、<a href="http://px.a8.net/svt/ejp?a8mat=ZYVIG+45FTMA+348+15QWXU" target="_blank">チカッパ！</a>
<img border="0" width="1" height="1" src="http://www13.a8.net/0.gif?a8mat=ZYVIG+45FTMA+348+15QWXU" alt="">に移転しました。<br>
移転した理由としては、<br><br>
<ol style="margin:0px 0px 0px 10px;">
<li>Movable Typeの再構築の時間が気になる</li>
<li>容量が足りなくなってきた</li>
<li>チカッパだとデータベースが2つ作れる</li>
<li>初期費用無料キャーンペーン中だった</li>
</ol>
<br>
といった点がありました。<br>
<strong>1</strong>に関しては時間帯にもよると思うんですが、たまに再構築でエラーが出てたりしました。<br>
<strong>2</strong>は追加で容量増やすことはできますが、どうせならこれを機に移転しようかなあと思い、<br>
<strong>3</strong>と<strong>4</strong>の理由にて移転を決めました。<br>
以前の記事でも書きましたが、word pressを使ってみたいなあと思い、<br>
チカッパではデータベース2つ作成でき、MTとWP両方使えるのが決め手となりました。<br>
ちょうどチカッパがキャンペーンやっていたのも大きかったです＾＾<br><br>
チカッパを使ってみての印象ですが、<br>
やはりMTの再構築に関してはロリポップよりは格段に早い感じでした。<br>
容量も3GBまで使えるので、充分かなあと思います。<br>

]]></description>
            <link>http:///web.netkatuyou.com/2009/04/28-205955.php</link>
            <guid>http:///web.netkatuyou.com/2009/04/28-205955.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">レンタルサーバー</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">Movable Type</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">チカッパ</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">レンタルサーバー</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">ロリポップ</category>
            
            <pubDate>Tue, 28 Apr 2009 20:59:55 +0900</pubDate>
        </item>
        
        <item>
            <title>コード記載に便利な「SyntaxHighlighter」</title>
            <description><![CDATA[ 前回の記事より、ソースコードを記載する際に便利なスクリプト
<br><br>
<a href="http://code.google.com/p/syntaxhighlighter/">SyntaxHighlighter</a><br><br>
を設置してみました。<br><br>
以前まではHTML等のコードを記載する際に、
HTMLタグのpreタグで囲み、<br>
&lt;&gt;の部分を表示するときに、&amp;lt;　&amp;gt;　という風に変換する必要があり、<br>
とても手間がかかっていました。<br>
そこでこの<b>SyntaxHighlighter</b>を使用すると、<br>
簡単にソースコードを記載することができます。<br>
まずファイルのダウンロードは<br><br>
こちらから。

<a href="http://code.google.com/p/syntaxhighlighter/downloads/list">Downloads - 
 syntaxhighlighter -</a><br><br>

ファイルを解凍し、Scriptフォルダ、Stylesフォルダの中身をアップロードします。<br>
そしてhead内には例えば以下のようにファイルを読み込みます。

<pre name="code" class="xhtml">
<link rel="stylesheet" href="Styles/SyntaxHighlighter.css" type="text/css" /> 
<script type="text/javascript" src="SyntaxHighlighter/Scripts/shCore.js"></script> 
<!-- 使いたい言語に応じて記述--> 
<script type="text/javascript" src="SyntaxHighlighter/Scripts/shBrushXml.js"></script>  
<script type="text/javascript" src="SyntaxHighlighter/Scripts/shBrushCss.js"></script>
<script type="text/javascript" src="SyntaxHighlighter/Scripts/shBrushJScript.js"></script>  
</pre>

syntaxhighlighter は色々な言語に対応していて、<br>
XmlならshBrushXml.js、CSSならshBrushCss.jsのように<br>
使用したい言語に応じてファイルを読み込ませます。<br>
それともう一つhead内に、<br>
<pre name="code" class="js">
<script type="text/javascript">
window.onload = function () {  
	dp.SyntaxHighlighter.ClipboardSwf = 'js/clipboard.swf';  
	dp.SyntaxHighlighter.HighlightAll('code');  
}  
</script>
</pre>
とjava scriptを記述します。<br>
そして実際にコードを記載するときは記載したいコードを、
<pre name="code" class="xml">
<pre name="code" class="xml"></pre>
</pre>
とpreタグ、もしくはtextareaタグで囲み、<br>
class=""の部分で記載するコードの言語を指定します。<br>
XMLならclass="xml"、CSSならclass="css"のように指定します。<br>
使い方としては以上になります。<br>
なお、SyntaxHighlighterについてはこちらの<br><br>

<a href="http://scianto.net/archives/2008/09/27233000.php">ソースコードを綺麗に表示するJS「dp.SyntaxHighlighter」｜caraldo.net | MT Blog</a>
<br><br>がとても分かりやすく、<br>
カスタマイズについても書かれていますので、とても参考になるかと思います。<br>

]]></description>
            <link>http:///web.netkatuyou.com/2009/04/18-112947.php</link>
            <guid>http:///web.netkatuyou.com/2009/04/18-112947.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Ajax</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">Ajax</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">SyntaxHighlighter</category>
            
            <pubDate>Sat, 18 Apr 2009 11:29:47 +0900</pubDate>
        </item>
        
        <item>
            <title>jQueryを使用した画像ギャラリー「Galleria」</title>
            <description><![CDATA[jQueryを使用した画像ギャラリー「Galleria」をご紹介。<br><br>

<a href="http://devkick.com/lab/galleria/">Galleria</a>
<br><br>
画像ギャラリーを作る際、<br>
通常は大きい画像と小さいサムネイル画像を用意する場合が多いと思いますが、<br>
<b>Galleria</b>を使うと自動的にサムネイル画像が生成されます。<br>
ではサンプルページが公開されているのでそちらをご紹介。<br><br>

<a href="http://devkick.com/lab/galleria/demo_01.htm">Galleria Demo 01</a><br><br>

<a href="http://devkick.com/lab/galleria/demo_02.htm">Galleria Demo 02</a><br><br>

使用方法ですが、<br>
<a href="http://code.google.com/p/galleria/">http://code.google.com/p/galleria/</a><br>
より最新版の圧縮ファイルをダウンロードします。<br>
圧縮ファイルを解凍後、下記のようにファイルを読み込みます。
<textarea name="code"  class="xml">
<link href="galleria.css" rel="stylesheet" type="text/css" media="screen">
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.galleria.js"></script>
</textarea>
それから下記のようにjava scriptを記述します。<br>
<textarea name="code"  class="jscript"> <script type="text/javascript">  
 $(function(){  
 $('ul.photo').galleria();  
 })  
 </script></textarea>
ちなみに
<pre name="code"  class="jscript"> 
 $('ul.photo').galleria();  
</pre>
のphotoの部分はHTMLのulでつけたclass名と同じ名前を付けます。<br>
では以下にHTMLの記述例を。
<textarea name="code"  class="xml"><ul class="photo">
<li class="active"><img src="images/sky.jpg" alt="空" /></li>
<li><img src="images/sky2.jpg" alt="空2" /></li>
<li><img src="images/flower.jpg" alt="花" /></li>
<li><img src="images/sakura.jpg" alt="桜" /></li>
</ul>
</textarea> 
簡易ですがサンプルページを作成しましたので、<br>
そちらも参考していただけたらと思います。<br><br>
<a href="http://web.netkatuyou.com/ajax_sample/galleria/sample.html">Galleria サンプルページ</a><br><br>

またカスタマイズに関しては、<a href="http://allabout.co.jp/">All About</a>の記事の
<br><br>
<a href="http://allabout.co.jp/internet/javascript/closeup/CU20080324A/index.htm#1">jQuery ギャラリープラグインGalleria</a><br><br>
が参考になると思います。<br>







]]></description>
            <link>http:///web.netkatuyou.com/2009/04/09-093009.php</link>
            <guid>http:///web.netkatuyou.com/2009/04/09-093009.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Ajax</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">Ajax</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">Galleria</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">jQuery</category>
            
            <pubDate>Thu, 09 Apr 2009 09:30:09 +0900</pubDate>
        </item>
        
        <item>
            <title>web creators 5月号（2009）</title>
            <description><![CDATA[ 月1回しか更新していない＾＾；
ということでweb creatorsの最新号のご紹介。

<div class="amazlet-box" style="margin-bottom:0px;"><div class="amazlet-image" style="float:left;"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B001VGQPCE/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank"><img src="http://ecx.images-amazon.com/images/I/514sfE8RaKL._SL160_.jpg" alt="Web creators (ウェブクリエイターズ) 2009年 05月号 [雑誌]" style="border: none;" /></a></div><div class="amazlet-info" style="float:left;margin-left:15px;line-height:120%"><div class="amazlet-name" style="margin-bottom:10px;line-height:120%"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B001VGQPCE/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank">Web creators (ウェブクリエイターズ) 2009年 05月号 [雑誌]</a><div class="amazlet-powered-date" style="font-size:7pt;margin-top:5px;font-family:verdana;line-height:120%">posted with <a href="http://www.amazlet.com/browse/ASIN/B001VGQPCE/uniquenet-22/ref=nosim/" title="Web creators (ウェブクリエイターズ) 2009年 05月号 [雑誌]" target="_blank">amazlet</a> at 09.04.04</div></div><div class="amazlet-detail"><br />インプレスコミュニケーションズ <br /></div><div class="amazlet-link" style="margin-top: 5px"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B001VGQPCE/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank">Amazon.co.jp で詳細を見る</a></div></div><div class="amazlet-footer" style="clear: left"></div></div>


特集は

<b>WEBパーツ装飾デザイン辞典92</b>

CSSを使っての装飾、
Fireworks・Photoshop・Illustratorなどを使用してのパーツ作成など、
その装飾の「使いどころ」を含めて紹介されています。
個人的に取り入れてみたいなあ、という装飾がたくさんありました。

巻末特集は

<b>WEBクリエイターデータブック2009</b>

制作環境や働き方、スキルの習得など、
アンケートを基に様々データがグラフ化され、とても読み応えのある内容でした。
これからWEB業界を目指す方は是非読んでおくべき内容だと思います。









]]></description>
            <link>http:///web.netkatuyou.com/2009/04/04-121158.php</link>
            <guid>http:///web.netkatuyou.com/2009/04/04-121158.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">参考書籍</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">web creators</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">WEBパーツ</category>
            
            <pubDate>Sat, 04 Apr 2009 12:11:58 +0900</pubDate>
        </item>
        
        <item>
            <title>web creators 4月号（2009）</title>
            <description><![CDATA[ 毎月恒例、web creators最新号をチェック。

<div class="amazlet-box" style="margin-bottom:0px;"><div class="amazlet-image" style="float:left;"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B001T2D67C/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank"><img src="http://ecx.images-amazon.com/images/I/51HIwpHCHXL._SL160_.jpg" alt="Web creators (ウェブクリエイターズ) 2009年 04月号 [雑誌]" style="border: none;" /></a></div><div class="amazlet-info" style="float:left;margin-left:15px;line-height:120%"><div class="amazlet-name" style="margin-bottom:10px;line-height:120%"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B001T2D67C/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank">Web creators (ウェブクリエイターズ) 2009年 04月号 [雑誌]</a><div class="amazlet-powered-date" style="font-size:7pt;margin-top:5px;font-family:verdana;line-height:120%">posted with <a href="http://www.amazlet.com/browse/ASIN/B001T2D67C/uniquenet-22/ref=nosim/" title="Web creators (ウェブクリエイターズ) 2009年 04月号 [雑誌]" target="_blank">amazlet</a> at 09.03.03</div></div><div class="amazlet-detail"><br />インプレスコミュニケーションズ <br /></div><div class="amazlet-link" style="margin-top: 5px"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B001T2D67C/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank">Amazon.co.jp で詳細を見る</a></div></div><div class="amazlet-footer" style="clear: left"></div></div>

今月号の特集は

<b>WEBディレクション&デザインにこだわる</b>

ということで名前の通り、デザイナーさんというより、
Webディレクターさん向けの内容かなあと感じました。
ただ、デザイナーさんでディレクターを兼任する場合も多いと思うので、
おろそかにしてはいけない部分だと思います。

巻末特集は

<b>WEBクリエイター独立開業ガイダンス</b>

フリーランスで仕事をしたい、
と考えている方は是非読んでおくべき内容だと思います。
]]></description>
            <link>http:///web.netkatuyou.com/2009/03/03-095541.php</link>
            <guid>http:///web.netkatuyou.com/2009/03/03-095541.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">参考書籍</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">web creators</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">WEBディレクション</category>
            
            <pubDate>Tue, 03 Mar 2009 09:55:41 +0900</pubDate>
        </item>
        
        <item>
            <title>web creators 3月号（2009）</title>
            <description><![CDATA[ 恒例、web creatorsの最新号をチェック。 

<div class="amazlet-box" style="margin-bottom:0px;"><div class="amazlet-image" style="float:left;"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B001P83QHK/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank"><img src="http://ecx.images-amazon.com/images/I/51SxcU077dL._SL160_.jpg" alt="Web creators (ウェブクリエイターズ) 2009年 03月号 [雑誌]" style="border: none;" /></a></div><div class="amazlet-info" style="float:left;margin-left:15px;line-height:120%"><div class="amazlet-name" style="margin-bottom:10px;line-height:120%"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B001P83QHK/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank">Web creators (ウェブクリエイターズ) 2009年 03月号 [雑誌]</a><div class="amazlet-powered-date" style="font-size:7pt;margin-top:5px;font-family:verdana;line-height:120%">posted with <a href="http://www.amazlet.com/browse/ASIN/B001P83QHK/uniquenet-22/ref=nosim/" title="Web creators (ウェブクリエイターズ) 2009年 03月号 [雑誌]" target="_blank">amazlet</a> at 09.02.03</div></div><div class="amazlet-detail"><br />インプレスコミュニケーションズ <br /></div><div class="amazlet-link" style="margin-top: 5px"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B001P83QHK/uniquenet-22/ref=nosim/" name="amazletlink" target="_blank">Amazon.co.jp で詳細を見る</a></div></div><div class="amazlet-footer" style="clear: left"></div></div>

特集は

<strong>「表現を多彩にするCSS実践アイデアファイル」</strong>

制作していて物足りない、一工夫加えたい、
といったときにお役立ちの内容です。

そして巻末特集の

<strong>「作業効率20%アップのDreamweaver徹底活用法」</strong>

はとても参考になりました。
コーティング作業をするときはDreamweaberを使うことが多いんですが、
意外と知らなかった機能がたくさん。
例えば仮の画像を置いてコーティングしたいときに、
<strong>「イメージプレースホルダー」</strong>という機能で、仮の画像が作成できます。
他にも効率アップできる方法がたくさん紹介されているので、
Dreamweaverを使用している方にはおススメの特集です。




]]></description>
            <link>http:///web.netkatuyou.com/2009/02/03-225719.php</link>
            <guid>http:///web.netkatuyou.com/2009/02/03-225719.php</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">参考書籍</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">Dreamweaber</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">web creators</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">イメージプレースホルダー</category>
            
            <pubDate>Tue, 03 Feb 2009 22:57:19 +0900</pubDate>
        </item>
        
    </channel>
</rss>
