<?xml version="1.0" encoding="UTF-8"  standalone="yes" ?>
<rss version="2.0">
	<channel>
		<title>社群: 知識社群 (iSites) 教學 - 文件區(有趣的小工具)</title>
		<description>台灣數位學習數位教學平台 RSS feed provider</description>
		<language>zh-tw</language>
		<link>http://sites.xms.com.tw/board.php?courseID=81&amp;f=doclist&amp;folderID=351</link>
	<item>
		<title>顯示目前時間</title>
		<link>http://sites.xms.com.tw/board.php?courseID=81&amp;f=doc&amp;cid=2353</link>
		<description>內嵌語法
&amp;lt;embed src=&quot;http://www.clocklink.com/clocks/5031-blue.swf?TimeZone=GMT0800&amp;amp;&quot;&amp;nbsp; width=&quot;190&quot; height=&quot;80&quot; wmode=&quot;transparent&quot; type=&quot;application/x-shockwave-flash&quot;&amp;gt;
&amp;nbsp;
呈現效果
&amp;nbsp; </description>
		<pubDate>Sat, 10 Jul 2010 10:47:47 +0800</pubDate>
	</item>
	<item>
		<title>各種造型的時鐘</title>
		<link>http://sites.xms.com.tw/board.php?courseID=81&amp;f=doc&amp;cid=2294</link>
		<description>使用方式
1. 連至 clockling: http://www.clocklink.com
2. 選擇想要嵌入的時鐘
3. 複製語法
4. 使用自由欄位，將內容貼上
5. 呈現範例如下: 
&amp;nbsp;&amp;nbsp;  </description>
		<pubDate>Thu, 01 Jul 2010 10:16:04 +0800</pubDate>
	</item>
	<item>
		<title>天氣預測</title>
		<link>http://sites.xms.com.tw/board.php?courseID=81&amp;f=doc&amp;cid=2189</link>
		<description>使用方式: 使用自由欄位，將以下的內容貼上去就成功囉
---------------------------
&amp;lt;script type=&quot;text/javascript&quot;&amp;gt;&amp;lt;!--Set_106TV_Face=&quot;1&quot;;Set_106TV_City=&quot;taipei&quot;;Set_106TV_TableBorderColor=&quot;000000&quot;;Set_106TV_TableBgColor=&quot;FFFFFF&quot;;Set_106TV_TableHrColor=&quot;CCCCCC&quot;;Set_106TV_FontColor_1=&quot;000000&quot;;Set_106TV_FontColor_2=&quot;F7941D&quot;;Set_106TV_FontColor_3=&quot;808080&quot;;Set_106TV_FontColor_4=&quot;000000&quot;;Set_106TV_FontColor_5=&quot;808080&quot;;Set_106TV_FontColor_6=&quot;417AA2&quot;;Set_106TV_FontColor_7=&quot;800000&quot;;Set_106TV_FontColor_8=&quot;000000&quot;;//--&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;script type=&quot;text/javascript&quot; language=&quot;Javascript&quot; src=&quot;http://www.106tv.com/modules-Weather.htm&quot;&amp;gt;&amp;lt;/script&amp;gt; </description>
		<pubDate>Sun, 20 Jun 2010 22:17:53 +0800</pubDate>
	</item>
	<item>
		<title>值日生的 javascript 小程式</title>
		<link>http://sites.xms.com.tw/board.php?courseID=81&amp;f=doc&amp;cid=2148</link>
		<description>使用自由欄位，將下面的程式放進去，並修改 schedule, members 就可以了
&amp;nbsp;
-------------------------------------------------------------------
&amp;lt;script type=&quot;text/javascript&quot;&amp;gt;var schedule = {year:2010, month:6, day:12, duration:7, number:2};var members = [&quot;Rick&quot;, &quot;Nash&quot;, &quot;yvonne&quot;, &quot;tcsu&quot;,&quot;irenetsung&quot;,&quot;lao1206&quot;,&quot;linchuhs&quot;];
var info = getInfo();// document.write(&quot;&amp;lt;div style=&#039;border:1px solid red; padding:2px&#039;&amp;gt;&quot;);// document.write(&quot;值日生: &quot;);document.write(&quot;&amp;lt;span style=&#039;color:red&#039;&amp;gt;&quot; + info.members + &quot;&amp;lt;/span&amp;gt;&quot;);document.write(&quot; &amp;lt;span style=&#039;font-size:11px; color:#aaa&#039;&amp;gt;(&quot; + info.duration + &quot;, 下次: &quot; + info.next + &quot;)&amp;lt;/span&amp;gt; &amp;lt;p&amp;gt;&quot;);document.write(&quot;麻吉值日生公約→ 我最棒： &amp;lt;br&amp;gt;&quot;);document.write(&quot;肩負起Po文、回討論、關心新麻吉的責任喲 ... 就是幫助大家都能互相學習交流~&quot;);// document.write(&quot;&amp;lt;/div&amp;gt;&quot;);
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;

// 以下是程式碼，請不要理我 ....
function getInfo(){&amp;nbsp;&amp;nbsp;&amp;nbsp; var baseDay = new Date(schedule.year, schedule.month - 1, schedule.day);&amp;nbsp;&amp;nbsp;&amp;nbsp; var today = new Date();
&amp;nbsp;&amp;nbsp;&amp;nbsp; var times = Math.floor(NumOfDays(baseDay, today) / schedule.duration);&amp;nbsp;&amp;nbsp;&amp;nbsp; var dStart = Math.floor(NumOfDays(baseDay, today) / schedule.duration) * schedule.duration;&amp;nbsp;&amp;nbsp;&amp;nbsp; var dEnd = dStart + schedule.duration;&amp;nbsp;&amp;nbsp;&amp;nbsp; var duration = {start: nextDate(baseDay, dStart), end: nextDate(baseDay, dEnd)};
&amp;nbsp;&amp;nbsp;&amp;nbsp; var memberStart = (times * schedule.number) % members.length;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var str = &quot;&quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp; var nextStr = &quot;&quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp; var i, j;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (i=memberStart; i&amp;lt;memberStart + schedule.number; i++)&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (str != &quot;&quot;) str += &quot;, &quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; str += members[i % members.length];&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp; for (j=i; j&amp;lt;i + schedule.number; j++)&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (nextStr != &quot;&quot;) nextStr += &quot;, &quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; nextStr += members[j % members.length];&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp; return {members: str, duration: &quot;~ &quot; + formatDate(duration.end), next: nextStr};}
function nextDate(currDate, day) { return new Date(currDate.getTime() + day * 1000*60*60*24); }function formatDate(d)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { return d.getFullYear() + &quot;.&quot; + (d.getMonth() + 1) + &quot;.&quot; + d.getDate(); }function NumOfDays(d1, d2)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { return Math.ceil( (d2.getTime()-d1.getTime()) / (1000*60*60*24) ); }
&amp;lt;/script&amp;gt;&amp;nbsp; </description>
		<pubDate>Sat, 12 Jun 2010 11:42:30 +0800</pubDate>
	</item>
	<item>
		<title>小遊戲</title>
		<link>http://sites.xms.com.tw/board.php?courseID=81&amp;f=doc&amp;cid=1546</link>
		<description>1. aBowman
&amp;nbsp;&amp;nbsp;&amp;nbsp; 提供多款網頁小遊戲(如:&amp;nbsp;寵物鼠、企鵝、金魚)&amp;nbsp;，每個小遊戲都可以透過簡單的編輯器，變更數量、顏色、背景哦！
&amp;nbsp;&amp;nbsp;&amp;nbsp; 參考步驟: 進入網址 &amp;gt; 選擇遊戲 &amp;gt; edit settings &amp;gt; 複製原始碼 &amp;gt; 嵌入社群網頁</description>
		<pubDate>Mon, 15 Mar 2010 09:57:00 +0800</pubDate>
	</item>
	<item>
		<title>音樂播放</title>
		<link>http://sites.xms.com.tw/board.php?courseID=81&amp;f=doc&amp;cid=1533</link>
		<description>語法
&amp;lt;EMBED type=&quot;application/x-shockwave-flash&quot; src=&quot;http://www.estvideo.com/dew/media/dewplayer-multi.swf&quot; bgcolor=&quot;#FFFFFF&quot; flashvars=&quot;son=http://sites.xms.com.tw/sysdata/81/81/doc/a997426d337e97b2/attach/516.mp3&amp;amp;autoplay=1&amp;amp;showtime=1&quot; width=&quot;240&quot; height=&quot;20&quot;&amp;gt;&amp;lt;/EMBED&amp;gt;
&amp;nbsp;
son=輸入mp3網址
&amp;nbsp;
呈現效果

&amp;nbsp;
&amp;nbsp;
參考網址: http://popo516.myweb.hinet.net/lost_heart/b/musicplayer/mini.htm </description>
		<pubDate>Thu, 11 Mar 2010 14:22:06 +0800</pubDate>
	</item>
	<item>
		<title>解繩子遊戲</title>
		<link>http://sites.xms.com.tw/board.php?courseID=81&amp;f=doc&amp;cid=1532</link>
		<description>所有線不交叉即過關，歡迎來挑戰!
&amp;nbsp;
內嵌語法
&amp;lt;embed height=&quot;300&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; width=&quot;100%&quot; src=&quot;http://www.qqxyx.com/softflash/20051122202252.swf&quot; quality=&quot;high&quot; wmode=&quot;transparent&quot; /&amp;gt;
&amp;nbsp;
呈現效果
 </description>
		<pubDate>Thu, 11 Mar 2010 13:50:46 +0800</pubDate>
	</item>
	<item>
		<title>跑馬燈</title>
		<link>http://sites.xms.com.tw/board.php?courseID=81&amp;f=doc&amp;cid=1529</link>
		<description>內嵌語法1
&amp;lt;embed height=&quot;40&quot; type=&quot;application/octet-stream&quot; width=&quot;350&quot; src=&quot;http://blog.roodo.com/fanlucy/f1528df3.swf&quot; flashvars=&quot;txt=祝各位兔年行大運 鴻兔大展&amp;nbsp;萬事如意 &quot; wmode=&quot;transparent&quot;/&amp;gt;
&amp;nbsp;
呈現效果
 

內嵌語法2
&amp;lt;EMBED src=http://blog.spforum.net/UploadFiles/2007-10/103861953.swf&amp;nbsp; width=350 height=25 type=application/x-shockwave-flash FlashVars=&quot;txt=祝各位兔年行大運 鴻兔大展&amp;nbsp;萬事如意&quot;/&amp;gt;
&amp;nbsp;
呈現效果
  </description>
		<pubDate>Wed, 10 Mar 2010 19:36:34 +0800</pubDate>
	</item>
	<item>
		<title>flash 人形時鐘</title>
		<link>http://sites.xms.com.tw/board.php?courseID=81&amp;f=doc&amp;cid=1528</link>
		<description>內嵌語法
&amp;lt;embed src=&#039;http://img9.imageshack.us/img9/3244/kuthauclock.swf&#039; width=&#039;160&#039; height=&#039;70&#039;/&amp;gt;&amp;lt;/embed&amp;gt;
&amp;nbsp;
呈現效果
</description>
		<pubDate>Wed, 10 Mar 2010 19:35:08 +0800</pubDate>
	</item>
	</channel>
	</rss>
