<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/mnk375/">
    <title>mnk375 @ ウィキ</title>
    <link>http://w.atwiki.jp/mnk375/</link>
    <atom:link href="https://w.atwiki.jp/mnk375/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>mnk375 @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2012-06-03T16:07:12+09:00</dc:date>
    <utime>1338707232</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/mnk375/pages/51.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/mnk375/pages/50.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/mnk375/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/mnk375/pages/49.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/mnk375/pages/48.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/mnk375/pages/47.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/mnk375/pages/46.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/mnk375/pages/45.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/mnk375/pages/42.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/mnk375/pages/44.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/mnk375/pages/51.html">
    <title>クロスブラウザ注意点</title>
    <link>https://w.atwiki.jp/mnk375/pages/51.html</link>
    <description>
      クロスブラウザのためのテクニック集
http://coliss.com/articles/build-websites/operation/work/1234.html

IE6バグ解決法
http://coliss.com/articles/build-websites/operation/css/1036.html

jQuery総集編
http://coliss.com/articles/build-websites/operation/javascript/100-jquery-plugins-2011-best.html    </description>
    <dc:date>2012-06-03T16:07:12+09:00</dc:date>
    <utime>1338707232</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/mnk375/pages/50.html">
    <title>dl　表組　ネガティブマージン編</title>
    <link>https://w.atwiki.jp/mnk375/pages/50.html</link>
    <description>
      無印　サマーキャンプ
開催日／場所部分、dl表組　ネガティブマージン
http://www.mujioutdoor.net/school/kids_summer_camp/2012/concept.html

&lt;dl&gt;
&lt;dt&gt;第1回&lt;/dt&gt;
&lt;dd&gt;7月23日　キャンプ場&lt;/dd&gt;
&lt;dt&gt;第1回&lt;/dt&gt;
&lt;dd&gt;7月23日　キャンプ場&lt;/dd&gt;
&lt;dt&gt;第1回&lt;/dt&gt;
&lt;dd&gt;7月23日　キャンプ場&lt;/dd&gt;
&lt;/dl&gt;

--------------------------------------
dl {
	margin:0;
	padding:0;
	line-height:1.4;
	font-size:12pt;
}

dt {
	line-height:1.5em;
	margin:0px;
	padding:0px;
}

dd {
	line-height:1.5em;
	margin-top:-1.5em;
	padding:0 0 7px 4em;
}
--------------------------------------
行間と同じ数値のネガティブマージンを記載するそう。（IE6も対応）
DWのデザインビューには反映されないとのこと

http://www.nk0206.com/life/2010/04/dt-dd-n-margin.html

[CSS]ネガティブマージンの理解を深め、活用するテクニック集
http://coliss.com/articles/build-websites/operation/css/css-using-negative-margins.html    </description>
    <dc:date>2012-06-02T14:57:40+09:00</dc:date>
    <utime>1338616660</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/mnk375/pages/15.html">
    <title>reset.css　テンプレート YUI</title>
    <link>https://w.atwiki.jp/mnk375/pages/15.html</link>
    <description>
      YUI CSS 
reset.css、fonts.css、grids.css、base.cssの4つ


↓reset.css
-----------------------------------------------------------
/*
YUI 3.5.0 (build 5089)
Copyright 2012 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
/*
	TODO will need to remove settings on HTML since we can&#039;t namespace it.
	TODO with the prefix, should I group by selector or property for weight savings?
*/
html{
	color:#000;
	background:#FFF;
}
/*
	TODO remove settings on BODY since we can&#039;t namespace it.
*/
/*
	TODO test putting a class on HEAD.
		- Fails on FF. 
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,
img {
	border:0;
}
/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style:normal;
	font-weight:normal;
}

ol,
ul {
	list-style:none;
}

caption,
th {
	text-align:left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,
q:after {
	content:&#039;&#039;;
}
abbr,
acronym {
	border:0;
	font-variant:normal;
}
/* to preserve line-height and selector appearance */
sup {
	vertical-align:text-top;
}
sub {
	vertical-align:text-bottom;
}
input,
textarea,
select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
/*to enable resizing for IE*/
input,
textarea,
select {
	*font-size:100%;
}
/*because legend doesn&#039;t inherit in IE */
legend {
	color:#000;
}
/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset { display: none; }    </description>
    <dc:date>2012-05-29T10:55:42+09:00</dc:date>
    <utime>1338256542</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/mnk375/pages/49.html">
    <title>jQuery pLUGIN</title>
    <link>https://w.atwiki.jp/mnk375/pages/49.html</link>
    <description>
      http://plugins.jquery.com/

https://github.com/jquery/plugins.jquery.com

http://jquerylist.com/

西畑一馬氏のサイト
http://javascript.webcreativepark.net/

http://www.delicious.com/stacks/view/QZQpDa

http://b.hatena.ne.jp/search/tag?q=jQuery

http://coliss.com/articles/build-websites/operation/javascript/100-jquery-plugins-2011-best.html    </description>
    <dc:date>2012-05-26T14:18:21+09:00</dc:date>
    <utime>1338009501</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/mnk375/pages/48.html">
    <title>Ajax de スムーズページング</title>
    <link>https://w.atwiki.jp/mnk375/pages/48.html</link>
    <description>
      http://go.ascii.jp/?jq13

--------------------------------------------------------------------
フロント側html
--------------------------------------------------------------------

&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0
 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;ja&quot; lang=&quot;ja&quot;&gt;
	&lt;head&gt;
		&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Style-Type&quot; content=&quot;text/css&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Script-Type&quot; content=&quot;text/javascript&quot; /&gt;
		&lt;title&gt;sample1&lt;/title&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot;&gt;&lt;/script&gt;
		&lt;script type=&quot;text/javascript&quot;&gt;
$(function(){
	
	$(&quot;#content&quot;).load($(&quot;ul.pager li a:first&quot;).attr(&quot;href&quot;)+&quot; #content&quot;);
	$(&quot;ul.pager li a:first&quot;).addClass(&quot;selected&quot;);
	
	$(&quot;ul.pager li a&quot;).click(function(){
		
		$(&quot;#content&quot;).html(&#039;&lt;p class=&quot;loading&quot;&gt;&lt;img src=&quot;images/loading.gif&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;&#039;);
		
		$(&quot;#content&quot;).data(&quot;file&quot;,$(this).attr(&quot;href&quot;));
		
		$(&#039;html,body&#039;).animate({ scrollTop: $(&quot;h1&quot;).offset().top-20 }, &#039;slow&#039;,&#039;swing&#039;,function(){
			$(&quot;#content&quot;).load($(&quot;#content&quot;).data(&quot;file&quot;)+&quot; #content&quot;);
		})
		
		$(&quot;ul.pager li a&quot;).removeClass(&quot;selected&quot;);
		$(this).addClass(&quot;selected&quot;);
		return false;
	});
	
	
});
		&lt;/script&gt;
		&lt;style type=&quot;text/css&quot;&gt;
#container{
	width:500px;
	margin:20px auto;
}
div.colmun{
	width:500px;
	border-bottom:1px solid #CCC;
}
div.colmun:after{
	content:&quot;.&quot;;
	display:block;
	clear:both;
	visibility:hidden;
	height:0;
}
div.colmun div.img{
	float:left;
	width:60px;
	border:1px solid #ccc;
	padding:5px;
	margin:5px;
	display:inline;
}
div.colmun div.img img{
	border:0;
}
div.colmun div.info{
	float:left;
	padding:5px;
	width:400px;
}
div.colmun div.info h2{
	margin:0;
	color:#009AFF;
	font-size:small;
}
div.colmun div.info ul{
	margin:0;
	padding:15px 0 0 15px;
}
div.colmun div.info li{
	margin:0;
	font-size:small;
}
p.loading{
	text-align:center;
	margin:10px;
}
ul.pager{
	text-align:center;
	padding:10px;
}
ul.pager li{
	display:inline;
}
ul.pager li a{
	border:1px solid #009AFF;;
	color:#009AFF;;
	font-weight:bold;
	margin:2px;
	padding:5px;
	text-decoration:none;
}
ul.pager li a.selected{
	background:#73C7FF;
}
		&lt;/style&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;div id=&quot;container&quot;&gt;
			
			&lt;h1&gt;&lt;img src=&quot;images/header.jpg&quot; alt=&quot;新着書籍&quot; /&gt;&lt;/h1&gt;
			
			&lt;div id=&quot;content&quot;&gt;
				&lt;p class=&quot;loading&quot;&gt;&lt;img src=&quot;images/loading.gif&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
			&lt;/div&gt;
			
			&lt;ul class=&quot;pager&quot;&gt;
				&lt;li&gt;&lt;a href=&quot;data1.html&quot;&gt;1&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;data2.html&quot;&gt;2&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;data3.html&quot;&gt;3&lt;/a&gt;&lt;/li&gt;
			&lt;/ul&gt;
			
		&lt;/div&gt;
	&lt;/body&gt;
&lt;/html&gt;


--------------------------------------------------------------------
データのHTML
--------------------------------------------------------------------

&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0
 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;ja&quot; lang=&quot;ja&quot;&gt;
	&lt;head&gt;
		&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;
		&lt;title&gt;data1&lt;/title&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;div id=&quot;content&quot;&gt;
			&lt;div class=&quot;colmun&quot;&gt;
				&lt;div class=&quot;img&quot;&gt;
					&lt;a href=&quot;http://asciimw.jp/search/?isbn=978-4-04-868064-6&quot;&gt;
						&lt;img height=&quot;80&quot; width=&quot;56&quot; alt=&quot;&quot; src=&quot;./images/978-4-04-868064-6s.jpg&quot;/&gt;
					&lt;/a&gt;
				&lt;/div&gt;
				&lt;div class=&quot;info&quot;&gt;
					&lt;h2&gt;雲の世界の向こうをつかむクラウドの技術&lt;/h2&gt;
					&lt;ul&gt;
						&lt;li&gt;発売日 ： 2009/11/06&lt;/li&gt;
						&lt;li&gt;定価 ： 1,890円&lt;/li&gt;
						&lt;li&gt;ISBN ： 978-4-04-868064-6&lt;/li&gt;
					&lt;/ul&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			
			&lt;div class=&quot;colmun&quot;&gt;
				&lt;div class=&quot;img&quot;&gt;
					&lt;a href=&quot;http://asciimw.jp/search/?isbn=978-4-04-868174-2&quot;&gt;
						&lt;img height=&quot;80&quot; width=&quot;56&quot; alt=&quot;&quot; src=&quot;./images/978-4-04-868174-2s.jpg&quot;/&gt;
					&lt;/a&gt;
				&lt;/div&gt;
				&lt;div class=&quot;info&quot;&gt;
					&lt;h2&gt;完全合格 ORACLE MASTER Silver DBA 11g 問題集&lt;/h2&gt;
					&lt;ul&gt;
						&lt;li&gt;著者 ： 津田竜賜、有里恵、飯塚美香、伊藤尚子、ほか&lt;/li&gt;
						&lt;li&gt;発売日 ： 2009/11/10&lt;/li&gt;
						&lt;li&gt;定価 ： 3,129円&lt;/li&gt;
						&lt;li&gt;ISBN  ： 978-4-04-868174-2&lt;/li&gt;
					&lt;/ul&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			
			&lt;div class=&quot;colmun&quot;&gt;
				&lt;div class=&quot;img&quot;&gt;
					&lt;a href=&quot;http://asciimw.jp/search/?isbn=978-4-04-868180-3&quot;&gt;
						&lt;img height=&quot;80&quot; width=&quot;56&quot; alt=&quot;&quot; src=&quot;./images/978-4-04-868180-3s.jpg&quot;/&gt;
					&lt;/a&gt;
				&lt;/div&gt;
				&lt;div class=&quot;info&quot;&gt;
					&lt;h2&gt;すぐわかる Excel2007 Windows7／Vista／XP 全対応&lt;/h2&gt;
					&lt;ul&gt;
						&lt;li&gt;著者 ： 尾崎裕子&lt;/li&gt;
						&lt;li&gt;発売日 ： 2009/11/27&lt;/li&gt;
						&lt;li&gt;定価 ： 1,344円&lt;/li&gt;
						&lt;li&gt;ISBN  ： 978-4-04-868180-3&lt;/li&gt;
					&lt;/ul&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			
			&lt;div class=&quot;colmun&quot;&gt;
				&lt;div class=&quot;img&quot;&gt;
					&lt;a href=&quot;http://asciimw.jp/search/?isbn=978-4-04-868181-0&quot;&gt;
						&lt;img height=&quot;80&quot; width=&quot;56&quot; alt=&quot;&quot; src=&quot;./images/978-4-04-868181-0s.jpg&quot;/&gt;
					&lt;/a&gt;
				&lt;/div&gt;
				&lt;div class=&quot;info&quot;&gt;
					&lt;h2&gt;すぐわかる Windows7&lt;/h2&gt;
					&lt;ul&gt;
						&lt;li&gt;著者 ： 小野均&lt;/li&gt;
						&lt;li&gt;発売日 ： 2009/11/27&lt;/li&gt;
						&lt;li&gt;定価 ： 1,344円&lt;/li&gt;
						&lt;li&gt;ISBN  ： 978-4-04-868181-0&lt;/li&gt;
					&lt;/ul&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			
			&lt;div class=&quot;colmun&quot;&gt;
				&lt;div class=&quot;img&quot;&gt;
					&lt;a href=&quot;http://asciimw.jp/search/?isbn=978-4-04-868293-0&quot;&gt;
						&lt;img height=&quot;80&quot; width=&quot;56&quot; alt=&quot;&quot; src=&quot;./images/978-4-04-868293-0s.jpg&quot;/&gt;
					&lt;/a&gt;
				&lt;/div&gt;
				&lt;div class=&quot;info&quot;&gt;
					&lt;h2&gt;Macを買ったら最初に読む本 Mac OS X v10.6 Snow Leopard 版&lt;/h2&gt;
					&lt;ul&gt;
						&lt;li&gt;発売日 ： 2009/11/30&lt;/li&gt;
						&lt;li&gt;定価 ： 1,344円&lt;/li&gt;
						&lt;li&gt;ISBN  ： 978-4-04-868293-0&lt;/li&gt;
					&lt;/ul&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			
			&lt;div class=&quot;colmun&quot;&gt;
				&lt;div class=&quot;img&quot;&gt;
					&lt;a href=&quot;http://asciimw.jp/search/?isbn=978-4-04-868252-7&quot;&gt;
						&lt;img height=&quot;80&quot; width=&quot;56&quot; alt=&quot;&quot; src=&quot;./images/978-4-04-868252-7s.jpg&quot;/&gt;
					&lt;/a&gt;
				&lt;/div&gt;
				&lt;div class=&quot;info&quot;&gt;
					&lt;h2&gt;Microsoftのクラウドコンピューティング Windows Azure入門&lt;/h2&gt;
					&lt;ul&gt;
						&lt;li&gt;著者 ： 砂金信一郎、遠藤大樹、酒井達明、藤田昭人&lt;/li&gt;
						&lt;li&gt;発売日 ： 2009/11/30&lt;/li&gt;
						&lt;li&gt;定価 ： 2.730円&lt;/li&gt;
						&lt;li&gt;ISBN  ： 978-4-04-868252-7&lt;/li&gt;
					&lt;/ul&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			
		&lt;/div&gt;
	&lt;/body&gt;
&lt;/html&gt;    </description>
    <dc:date>2012-05-25T23:40:43+09:00</dc:date>
    <utime>1337956843</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/mnk375/pages/47.html">
    <title>カルーセルパネル　自動スライド</title>
    <link>https://w.atwiki.jp/mnk375/pages/47.html</link>
    <description>
      http://go.ascii.jp/?jq12/sample2.html


---------------------------------------------------------
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0
 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;ja&quot; lang=&quot;ja&quot;&gt;
	&lt;head&gt;
		&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Style-Type&quot; content=&quot;text/css&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Script-Type&quot; content=&quot;text/javascript&quot; /&gt;
		&lt;title&gt;sample2&lt;/title&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot;&gt;&lt;/script&gt;
		&lt;script type=&quot;text/javascript&quot;&gt;
$(function(){
	
	$(&quot;#carouselInner&quot;).css(&quot;width&quot;,620*$(&quot;#carouselInner ul.column&quot;).size()+&quot;px&quot;);
	$(&quot;#carouselInner ul.column:last&quot;).prependTo(&quot;#carouselInner&quot;);
	$(&quot;#carouselInner&quot;).css(&quot;margin-left&quot;,&quot;-620px&quot;);
	
	$(&quot;#carouselPrev&quot;).click(function(){
		$(&quot;#carouselNext,#carouselPrev&quot;).hide();
		$(&quot;#carouselInner&quot;).animate({
			marginLeft : parseInt($(&quot;#carouselInner&quot;).css(&quot;margin-left&quot;))+620+&quot;px&quot;
		},&quot;slow&quot;,&quot;swing&quot; , 
		function(){
			$(&quot;#carouselInner&quot;).css(&quot;margin-left&quot;,&quot;-620px&quot;)
			$(&quot;#carouselInner ul.column:last&quot;).prependTo(&quot;#carouselInner&quot;);
			$(&quot;#carouselNext,#carouselPrev&quot;).show();
		});
	});
	
	$(&quot;#carouselNext&quot;).click(function(){
		$(&quot;#carouselNext,#carouselPrev&quot;).hide();
		$(&quot;#carouselInner&quot;).animate({
			marginLeft : parseInt($(&quot;#carouselInner&quot;).css(&quot;margin-left&quot;))-620+&quot;px&quot;
		},&quot;slow&quot;,&quot;swing&quot; , 
		function(){
			$(&quot;#carouselInner&quot;).css(&quot;margin-left&quot;,&quot;-620px&quot;);
			$(&quot;#carouselInner ul.column:first&quot;).appendTo(&quot;#carouselInner&quot;);
			$(&quot;#carouselNext,#carouselPrev&quot;).show();
		});
	});
	
	var timerID = setInterval(function(){
		$(&quot;#carouselNext&quot;).click();
	},5000);
	
	$(&quot;#carouselPrev img,#carouselNext img&quot;).click(function(){
		clearInterval(timerID);
	});
	
});
		&lt;/script&gt;
		&lt;style type=&quot;text/css&quot;&gt;
*{
	margin:0;
	padding:0;
}
#carouselWrap{
	margin:100px auto;
	width:620px;
	height:135px;
	padding:5px;
	background:url(&quot;./images/background.gif&quot;);
	position:relative;
}

#carouselPrev{
	position:absolute;
	top:65px;
	left:-8px;
	cursor:pointer;
}
#carouselNext{
	position:absolute;
	top:65px;
	right:-8px;
	cursor:pointer;
}
#carouse{
	width:100%;
	height:100%;
	overflow:hidden;
}

#carouselInner ul.column{
	width:605px;
	height:105px;
	padding:15px 0 15px 15px;
	list-style-type:none;
	float:left;
}
#carouselInner ul.column li{
	float:left;
	margin-right:10px;
	display:inline;
}
#carouselInner ul.column li img{
	border:none;
}
		&lt;/style&gt;
	&lt;/head&gt;
	&lt;body&gt;
	&lt;body&gt;
		&lt;div id=&quot;carouselWrap&quot;&gt;
			&lt;p id=&quot;carouselPrev&quot;&gt;&lt;img src=&quot;./images/btn_prev.gif&quot; alt=&quot;前へ&quot; /&gt;&lt;/p&gt;
			&lt;p id=&quot;carouselNext&quot;&gt;&lt;img src=&quot;./images/btn_next.gif&quot; alt=&quot;次へ&quot; /&gt;&lt;/p&gt;
			&lt;div id=&quot;carouse&quot;&gt;
				&lt;div id=&quot;carouselInner&quot;&gt;
					&lt;ul class=&quot;column&quot;&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo1_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo2_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo3_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo4_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
					&lt;/ul&gt;
					&lt;ul class=&quot;column&quot;&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo5_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo6_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo7_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo8_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
					&lt;/ul&gt;
					&lt;ul class=&quot;column&quot;&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo9_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo10_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo11_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo12_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
					&lt;/ul&gt;
					&lt;ul class=&quot;column&quot;&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo13_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo14_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo15_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo16_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
					&lt;/ul&gt;
				&lt;/div&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	&lt;/body&gt;
	&lt;/body&gt;
&lt;/html&gt;    </description>
    <dc:date>2012-05-25T14:04:44+09:00</dc:date>
    <utime>1337922284</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/mnk375/pages/46.html">
    <title>カルーセルパネル</title>
    <link>https://w.atwiki.jp/mnk375/pages/46.html</link>
    <description>
      http://go.ascii.jp/?jq12

---------------------------------------------------------------------------
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0
 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;ja&quot; lang=&quot;ja&quot;&gt;
	&lt;head&gt;
		&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Style-Type&quot; content=&quot;text/css&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Script-Type&quot; content=&quot;text/javascript&quot; /&gt;
		&lt;title&gt;sample1&lt;/title&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot;&gt;&lt;/script&gt;
		&lt;script type=&quot;text/javascript&quot;&gt;
$(function(){
	
	$(&quot;#carouselInner&quot;).css(&quot;width&quot;,620*$(&quot;#carouselInner ul.column&quot;).size()+&quot;px&quot;);
	$(&quot;#carouselInner ul.column:last&quot;).prependTo(&quot;#carouselInner&quot;);
	$(&quot;#carouselInner&quot;).css(&quot;margin-left&quot;,&quot;-620px&quot;);
	
	
	$(&quot;#carouselPrev&quot;).click(function(){
		$(&quot;#carouselNext,#carouselPrev&quot;).hide();
		$(&quot;#carouselInner&quot;).animate({
			marginLeft : parseInt($(&quot;#carouselInner&quot;).css(&quot;margin-left&quot;))+620+&quot;px&quot;
		},&quot;slow&quot;,&quot;swing&quot; , 
		function(){
			$(&quot;#carouselInner&quot;).css(&quot;margin-left&quot;,&quot;-620px&quot;)
			$(&quot;#carouselInner ul.column:last&quot;).prependTo(&quot;#carouselInner&quot;);
			$(&quot;#carouselNext,#carouselPrev&quot;).show();
		});
	});
	
	$(&quot;#carouselNext&quot;).click(function(){
		$(&quot;#carouselNext,#carouselPrev&quot;).hide();
		$(&quot;#carouselInner&quot;).animate({
			marginLeft : parseInt($(&quot;#carouselInner&quot;).css(&quot;margin-left&quot;))-620+&quot;px&quot;
		},&quot;slow&quot;,&quot;swing&quot; , 
		function(){
			$(&quot;#carouselInner&quot;).css(&quot;margin-left&quot;,&quot;-620px&quot;)
			$(&quot;#carouselInner ul.column:first&quot;).appendTo(&quot;#carouselInner&quot;);
			$(&quot;#carouselNext,#carouselPrev&quot;).show();
		});
	});
	
});
		&lt;/script&gt;
		&lt;style type=&quot;text/css&quot;&gt;
*{
	margin:0;
	padding:0;
}
#carouselWrap{
	margin:100px auto;
	width:620px;
	height:135px;
	padding:5px;
	background:url(&quot;./images/background.gif&quot;);
	position:relative;
}

#carouselPrev{
	position:absolute;
	top:65px;
	left:-8px;
	cursor:pointer;
}
#carouselNext{
	position:absolute;
	top:65px;
	right:-8px;
	cursor:pointer;
}
#carousel{
	width:100%;
	height:100%;
	overflow:hidden;
}

#carouselInner ul.column{
	width:605px;
	height:105px;
	padding:15px 0 15px 15px;
	list-style-type:none;
	float:left;
}
#carouselInner ul.column li{
	float:left;
	margin-right:10px;
	display:inline;
}
#carouselInner ul.column li img{
	border:none;
}
		&lt;/style&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;div id=&quot;carouselWrap&quot;&gt;
			&lt;p id=&quot;carouselPrev&quot;&gt;&lt;img src=&quot;./images/btn_prev.gif&quot; alt=&quot;前へ&quot; /&gt;&lt;/p&gt;
			&lt;p id=&quot;carouselNext&quot;&gt;&lt;img src=&quot;./images/btn_next.gif&quot; alt=&quot;次へ&quot; /&gt;&lt;/p&gt;
			&lt;div id=&quot;carousel&quot;&gt;
				&lt;div id=&quot;carouselInner&quot;&gt;
					&lt;ul class=&quot;column&quot;&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo1_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo2_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo3_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo4_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
					&lt;/ul&gt;
					&lt;ul class=&quot;column&quot;&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo5_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo6_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo7_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo8_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
					&lt;/ul&gt;
					&lt;ul class=&quot;column&quot;&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo9_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo10_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo11_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo12_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
					&lt;/ul&gt;
					&lt;ul class=&quot;column&quot;&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo13_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo14_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo15_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
						&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;./images/photo16_thum.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
					&lt;/ul&gt;
				&lt;/div&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	&lt;/body&gt;
&lt;/html&gt;    </description>
    <dc:date>2012-05-25T14:02:50+09:00</dc:date>
    <utime>1337922170</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/mnk375/pages/45.html">
    <title>drag&amp;drop可能！フローティングウィンドウ　IE6対応版</title>
    <link>https://w.atwiki.jp/mnk375/pages/45.html</link>
    <description>
      http://editors.ascii.jp/m-kobashigawa/jqsample/chapter03/10/sample2.html

------------------------------------------------------------------------
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0
 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;ja&quot; lang=&quot;ja&quot;&gt;
	&lt;head&gt;
		&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Style-Type&quot; content=&quot;text/css&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Script-Type&quot; content=&quot;text/javascript&quot; /&gt;
		&lt;title&gt;sample2&lt;/title&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot;&gt;&lt;/script&gt;
		&lt;script type=&quot;text/javascript&quot;&gt;
$(function(){
	$(&quot;a.open&quot;).click(function(){
		$(&quot;#floatWindow&quot;).fadeIn(&quot;fast&quot;);
		return false;
	});
	
	$(&quot;#floatWindow a.close&quot;).click(function(){
		$(&quot;#floatWindow&quot;).fadeOut(&quot;fast&quot;);
		return false;
	});
	
	
	$(&quot;#floatWindow dl dt&quot;).mousedown(function(e){
		
		$(&quot;body&quot;).bind(&#039;selectstart&#039;, function(){
			return false;
		});
		
		$(&quot;#floatWindow&quot;)
			.data(&quot;clickPointX&quot; , e.pageX - $(&quot;#floatWindow&quot;).offset().left)
			.data(&quot;clickPointY&quot; , e.pageY - $(&quot;#floatWindow&quot;).offset().top);
		
		$(document).mousemove(function(e){
			$(&quot;#floatWindow&quot;).css({
				top:e.pageY  - $(&quot;#floatWindow&quot;).data(&quot;clickPointY&quot;)+&quot;px&quot;,
				left:e.pageX - $(&quot;#floatWindow&quot;).data(&quot;clickPointX&quot;)+&quot;px&quot;
			});
		});
		
	}).mouseup(function(){
		$(&quot;body&quot;).unbind(&#039;selectstart&#039;);
		$(document).unbind(&quot;mousemove&quot;);
		
	});
});
		&lt;/script&gt;
		&lt;style type=&quot;text/css&quot;&gt;
#floatWindow{
	display:none;
	position:absolute;
	width:500px;
	height:400px;
	top:100px;
	left:100px;
}
#floatWindow a.close{
	position:absolute;
	right:20px;
	top:1px;
}
#floatWindow a.close img{
	border:none;
}
#floatWindow dl{
	width:100%;
	height:100%;
	background:url(&quot;./images/floatWindow.png&quot;);
	margin:0;
}
* html #floatWindow dl{
	background:none;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=&#039;./images/floatWindow.png&#039;,sizingMethod=&#039;scale&#039;);
}
* html #floatWindow dl *{
	position:relative;
}
#floatWindow dl dt{
	height:25px;
	line-height:25px;
	text-indent:1em;
	color:white;
	font-weight:bold;
	cursor:move;
}
#floatWindow dl dd{
	margin:0;
	padding:2em;
	line-height:1.5;
	text-indent:1em;
}

		&lt;/style&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;a href=&quot;#floatWindow&quot; class=&quot;open&quot;&gt;フローティングウィンドウの表示&lt;/a&gt;
		
		&lt;div id=&quot;floatWindow&quot;&gt;
			&lt;a href=&quot;sample2.html&quot; class=&quot;close&quot;&gt;&lt;img src=&quot;./images/close.png&quot; alt=&quot;閉じる&quot; /&gt;&lt;/a&gt;
			&lt;dl&gt;
				&lt;dt&gt;jQueryによるフローティングウィンドウの作成&lt;/dt&gt;
				&lt;dd&gt;今回はjQueryでフローティングウィンドウを作成する方法を解説します。フローティングウィンドウとはWebページ上にドラッグ可能な別の子ウィンドウを表示するUIのことです。ポップアップなどで表示されるウィンドウとは異なりブラウザのポップアップブロックなどの影響を受けず、また、元のサイトにレイアウトなどに影響を与えずにウィンドウを表示することが可能になっています。&lt;/dd&gt;
			&lt;/dl&gt;
		&lt;/div&gt;
	&lt;/body&gt;
&lt;/html&gt;    </description>
    <dc:date>2012-05-25T11:43:42+09:00</dc:date>
    <utime>1337913822</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/mnk375/pages/42.html">
    <title>lightbox風モーダルウィンドウ</title>
    <link>https://w.atwiki.jp/mnk375/pages/42.html</link>
    <description>
      http://editors.ascii.jp/m-kobashigawa/jqsample/chapter03/09/sample2.html

-----------------------------------------------------------------------------------------

&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0
 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;ja&quot; lang=&quot;ja&quot;&gt;
	&lt;head&gt;
		&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Style-Type&quot; content=&quot;text/css&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Script-Type&quot; content=&quot;text/javascript&quot; /&gt;
		&lt;title&gt;sample2&lt;/title&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot;&gt;&lt;/script&gt;
		&lt;script type=&quot;text/javascript&quot;&gt;
		$(function(){
			$(&quot;body&quot;).append(&quot;&lt;div id=&#039;glayLayer&#039;&gt;&lt;/div&gt;&lt;div id=&#039;overLayer&#039;&gt;&lt;/div&gt;&quot;);
			
			$(&quot;#glayLayer&quot;).click(function(){
				$(this).hide()
				$(&quot;#overLayer&quot;).hide();
			});
			
			$(&quot;a.modal&quot;).click(function(){
				$(&quot;#glayLayer&quot;).show();
				$(&quot;#overLayer&quot;).show().html(&quot;&lt;img src=&#039;&quot;+$(this).attr(&quot;href&quot;)+&quot;&#039; /&gt;&quot;);
				return false;
			});
			
			if($.browser.msie &amp;&amp; $.browser.version&lt;7){
				$(window).scroll(function(){
					$(&quot;#glayLayer&quot;).css(&#039;top&#039;,$(document).scrollTop());
					$(&quot;#overLayer&quot;).css(&#039;top&#039;,($(document).scrollTop()+$(window).height()/2) +&quot;px&quot;);
				});
			}
			
		});
		&lt;/script&gt;
		&lt;style type=&quot;text/css&quot;&gt;
html,body{
	margin:0;
	padding:0;
	height:100%;
}
h1{
	margin:20px 50px;
	font-size:large;
	border-left:10px solid #7BAEB5;
	border-bottom:1px solid #7BAEB5;
	padding:10px;
	width:600px;
}
ul{
	width:700px;
}
ul li{
	float:left;
	list-style-type:none;
}
ul li img{
	border:0;
	margin:10px;
}
div#glayLayer{
	display:none;
	position:fixed;
	left:0;
	top:0;
	height:100%;
	width:100%;
	background:black;
	filter:alpha(opacity=60);
	opacity: 0.60;
}
* html div#glayLayer{
	position:absolute;
}
#overLayer{
	display:none;
	position: fixed;
	top:50%;
	left:50%;
	margin-top:-244px;
	margin-left:-325px;
}
* html #overLayer{
	position: absolute;
}
		&lt;/style&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;h1&gt;jQueryを利用したモーダルウィンドウの作成&lt;/h1&gt;
		&lt;ul&gt;
			&lt;li&gt;&lt;a href=&quot;images/photo1.jpg&quot; class=&quot;modal&quot;&gt;&lt;img src=&quot;images/photo1_thum.jpg&quot; alt=&quot;シャンデリア&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;images/photo2.jpg&quot; class=&quot;modal&quot;&gt;&lt;img src=&quot;images/photo2_thum.jpg&quot; alt=&quot;バラ&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;images/photo3.jpg&quot; class=&quot;modal&quot;&gt;&lt;img src=&quot;images/photo3_thum.jpg&quot; alt=&quot;海&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;images/photo4.jpg&quot; class=&quot;modal&quot;&gt;&lt;img src=&quot;images/photo4_thum.jpg&quot; alt=&quot;門&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;images/photo5.jpg&quot; class=&quot;modal&quot;&gt;&lt;img src=&quot;images/photo5_thum.jpg&quot; alt=&quot;海&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;images/photo6.jpg&quot; class=&quot;modal&quot;&gt;&lt;img src=&quot;images/photo6_thum.jpg&quot; alt=&quot;あじさい&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;images/photo7.jpg&quot; class=&quot;modal&quot;&gt;&lt;img src=&quot;images/photo7_thum.jpg&quot; alt=&quot;空&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;images/photo8.jpg&quot; class=&quot;modal&quot;&gt;&lt;img src=&quot;images/photo8_thum.jpg&quot; alt=&quot;建物&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
	&lt;/body&gt;
&lt;/html&gt;    </description>
    <dc:date>2012-05-24T15:45:08+09:00</dc:date>
    <utime>1337841908</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/mnk375/pages/44.html">
    <title>テキストモーダルウィンドウ</title>
    <link>https://w.atwiki.jp/mnk375/pages/44.html</link>
    <description>
      &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0
 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;ja&quot; lang=&quot;ja&quot;&gt;
	&lt;head&gt;
		&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Style-Type&quot; content=&quot;text/css&quot; /&gt;
		&lt;meta http-equiv=&quot;Content-Script-Type&quot; content=&quot;text/javascript&quot; /&gt;
		&lt;title&gt;sample5&lt;/title&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot;&gt;&lt;/script&gt;
		&lt;script type=&quot;text/javascript&quot;&gt;
		$(function(){
			$(&quot;dd&quot;).hide()
			$(&quot;body&quot;).append(&quot;&lt;div id=&#039;glayLayer&#039;&gt;&lt;/div&gt;&lt;div id=&#039;overLayer&#039;&gt;&lt;/div&gt;&quot;);
			
			$(&quot;#glayLayer&quot;).click(function(){
				$(this).hide();
				$(&quot;#overLayer&quot;).hide();
			});
			
			$(&quot;dt&quot;).click(function(){
				$(&quot;#glayLayer&quot;).show();
				$(&quot;#overLayer&quot;).show().html(&quot;&lt;img src=&#039;images/close.png&#039; class=&#039;close&#039; /&gt;&quot;+$(&quot;+dd&quot;,this).html()).css({
					marginTop:&quot;-&quot;+$(&quot;#overLayer&quot;).height()/2+&quot;px&quot; , 
					marginLeft:&quot;-&quot;+$(&quot;#overLayer&quot;).width()/2+&quot;px&quot; 
				});
				
				$(&quot;#overLayer img.close&quot;).click(function(){
					$(&quot;#glayLayer&quot;).hide();
					$(&quot;#overLayer&quot;).hide();
				});
				return false;
			});
			
			if($.browser.msie &amp;&amp; $.browser.version&lt;7){
				$(window).scroll(function(){
					$(&quot;#glayLayer&quot;).get(0).style.setExpression(&quot;top&quot;,&quot;$(document).scrollTop()+&#039;px&#039;&quot;);
					$(&quot;#overLayer&quot;).get(0).style.setExpression(&quot;top&quot;,&quot;($(document).scrollTop()+$(window).height()/2)+&#039;px&#039;&quot;);
				});
			}
		});
		&lt;/script&gt;
		&lt;style type=&quot;text/css&quot;&gt;
html,body{
	margin:0;
	padding:0;
	height:100%;
}
dl dt{
	margin:20px 50px;
	font-size:large;
	border:1px solid #7BAEB5;
	border-left:1em solid #7BAEB5;
	padding-left:10px;
	width:600px;
	cursor:pointer;
}
div#glayLayer{
	display:none;
	position:fixed;
	left:0;
	top:0;
	height:100%;
	width:100%;
	background:#7BAEB5;
	filter:alpha(opacity=75);
	opacity: 0.75;
}
* html div#glayLayer{
	position:absolute;
}
#overLayer{
	display:none;
	width:400px;
	background:white;
	padding:10px;
	position: fixed;
	top:50%;
	left:50%;
}
#overLayer img.close{
	position:absolute;
	top:-10px;
	right:-10px;
	cursor:pointer;
}
* html #overLayer{
	position: absolute;
}

		&lt;/style&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;dl&gt;
			&lt;dt&gt;Lorem ipsum dolor sit amet,&lt;/dt&gt;
			&lt;dd&gt;&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis neque urna, molestie id cursus non, bibendum nec magna. Mauris consequat faucibus ante sollicitudin ullamcorper. Proin et felis orci. Nulla vitae diam sit amet felis semper ultricies. Nulla vitae mauris sit amet augue pulvinar pulvinar. Donec tincidunt viverra turpis eget suscipit. Morbi eu lacus iaculis turpis suscipit pretium. Aenean ultricies scelerisque dictum. Phasellus tincidunt, nibh lacinia facilisis aliquam, lacus quam condimentum orci, id lacinia justo odio vel purus. Mauris molestie tortor eu purus facilisis at congue sapien commodo. Sed ac eros vitae odio ultrices mollis nec a lorem. Phasellus sit amet dolor nec tellus consequat ornare sit amet ut ipsum. Vestibulum sagittis, mi sed pulvinar semper, lacus mauris lobortis eros, eu egestas est lectus nec lacus. Donec in lacus quis elit consectetur accumsan sit amet sed tortor. Etiam id vestibulum libero. Nam faucibus tincidunt felis, eu feugiat nibh fringilla vel. Donec adipiscing dictum imperdiet. Nulla ac fringilla neque. Curabitur posuere euismod est vel vehicula. Curabitur quis ligula sit amet quam tempus venenatis.&lt;/p&gt;&lt;/dd&gt;
			&lt;dt&gt;Integer rhoncus felis mauris.&lt;/dt&gt;

			&lt;dd&gt;&lt;p&gt;Integer rhoncus felis mauris. Donec massa nisi, posuere vel posuere vel, suscipit sed magna. Sed congue scelerisque odio, faucibus tempor nisl posuere condimentum. In eu tellus vitae elit consequat pretium. Maecenas nec ultrices dolor. Curabitur eu pulvinar turpis. Aenean vel tortor justo, id dapibus velit. Mauris pulvinar massa sit amet erat mollis sit amet ornare tellus aliquet. Quisque ullamcorper elementum libero, ut vehicula neque placerat nec. In hac habitasse platea dictumst. In hac habitasse platea dictumst. Morbi et ante turpis, et fringilla tortor. In hac habitasse platea dictumst. Proin eros urna, sagittis vitae tristique et, ullamcorper ac leo. Donec elementum arcu tortor. Praesent tincidunt dui in est adipiscing ac lobortis lorem porttitor. Nullam et dui elit. Vivamus hendrerit vestibulum enim, quis lobortis erat viverra vitae. Donec at pellentesque mi. Mauris lobortis libero ac metus ultricies accumsan. &lt;/p&gt;&lt;/dd&gt;
			&lt;dt&gt;Integer pretium porttitor lectus at tempor.&lt;/dt&gt;
			&lt;dd&gt;&lt;p&gt;Integer pretium porttitor lectus at tempor. Donec nec cursus elit. Maecenas ornare malesuada urna vitae lobortis. Sed vulputate sapien quis purus cursus consectetur. Aenean nulla neque, egestas ut accumsan nec, convallis vel enim. Vestibulum vehicula interdum diam nec condimentum. Etiam in condimentum justo. Fusce a tortor metus, id pellentesque orci. Sed facilisis, tellus quis tempus faucibus, justo elit sodales lorem, eget placerat lectus risus bibendum ipsum. Donec varius mattis quam eu consequat. Praesent ut metus nec nibh tincidunt suscipit. Nam vulputate sodales egestas. Sed orci lectus, vestibulum ac gravida eget, congue non velit. Morbi rutrum convallis orci, in hendrerit arcu vulputate a. Aliquam aliquam facilisis libero, sit amet facilisis lacus tincidunt ac. Sed viverra nulla sit amet turpis egestas nec molestie justo congue. Vivamus a lacinia sem. Aenean ut metus arcu, non ornare orci. Praesent feugiat est eu tellus dictum ac imperdiet nisi imperdiet. &lt;/p&gt;&lt;/dd&gt;
		&lt;/dl&gt;
	&lt;/body&gt;
&lt;/html&gt;    </description>
    <dc:date>2012-05-24T15:35:33+09:00</dc:date>
    <utime>1337841333</utime>
  </item>
  </rdf:RDF>
