<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>「javascript 垂直輪播(跑馬燈、vertical carousel)」的迴響</title>
	<atom:link href="http://blog.hsin.tw/2008/javascript-vertical-carousel/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hsin.tw/2008/javascript-vertical-carousel/</link>
	<description></description>
	<lastBuildDate>Tue, 27 Dec 2011 09:14:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>由：ming</title>
		<link>http://blog.hsin.tw/2008/javascript-vertical-carousel/comment-page-1/#comment-6661</link>
		<dc:creator>ming</dc:creator>
		<pubDate>Tue, 22 Nov 2011 11:42:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hsin.tw/?p=83#comment-6661</guid>
		<description>感謝阿，正好在找這類的JS code，原本用《marquee》太醜，感謝分享: )</description>
		<content:encoded><![CDATA[<p>感謝阿，正好在找這類的JS code，原本用《marquee》太醜，感謝分享: )</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：hsin</title>
		<link>http://blog.hsin.tw/2008/javascript-vertical-carousel/comment-page-1/#comment-5480</link>
		<dc:creator>hsin</dc:creator>
		<pubDate>Wed, 10 Aug 2011 05:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hsin.tw/?p=83#comment-5480</guid>
		<description>以範例頁來說明的話 要改兩個地方
假設是要變成兩倍為40px
1. div.ann的高度改成40px --&gt; height:40px;
2. 丟進function的最後一個參數改成40 --&gt; slideLine(&#039;ann_box&#039;,&#039;div&#039;,2000,25,40);
不同的高度就是依此類推

這樣就可以增加高度了
每個div就可以加br增加內容</description>
		<content:encoded><![CDATA[<p>以範例頁來說明的話 要改兩個地方<br />
假設是要變成兩倍為40px<br />
1. div.ann的高度改成40px &#8211;&gt; height:40px;<br />
2. 丟進function的最後一個參數改成40 &#8211;&gt; slideLine(&#8216;ann_box&#8217;,'div&#8217;,2000,25,40);<br />
不同的高度就是依此類推</p>
<p>這樣就可以增加高度了<br />
每個div就可以加br增加內容</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：eva</title>
		<link>http://blog.hsin.tw/2008/javascript-vertical-carousel/comment-page-1/#comment-5479</link>
		<dc:creator>eva</dc:creator>
		<pubDate>Wed, 10 Aug 2011 04:01:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hsin.tw/?p=83#comment-5479</guid>
		<description>請問版大:
我的字數較長,但版面很小,
我想要div裡的字數用br斷行後,仍可一起輪動....
可否讓高度增加為兩行輪動....

我改變div的height沒用
我改變js裡的h,變成跑馬的篇幅變高,但字還是被蓋住
我改變function裡的高度參數也沒用
請問有辦法嗎？
謝謝</description>
		<content:encoded><![CDATA[<p>請問版大:<br />
我的字數較長,但版面很小,<br />
我想要div裡的字數用br斷行後,仍可一起輪動&#8230;.<br />
可否讓高度增加為兩行輪動&#8230;.</p>
<p>我改變div的height沒用<br />
我改變js裡的h,變成跑馬的篇幅變高,但字還是被蓋住<br />
我改變function裡的高度參數也沒用<br />
請問有辦法嗎？<br />
謝謝</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：Patty</title>
		<link>http://blog.hsin.tw/2008/javascript-vertical-carousel/comment-page-1/#comment-4154</link>
		<dc:creator>Patty</dc:creator>
		<pubDate>Wed, 08 Jun 2011 11:11:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hsin.tw/?p=83#comment-4154</guid>
		<description>可以了可以了!!
謝謝版主的幫忙:))</description>
		<content:encoded><![CDATA[<p>可以了可以了!!<br />
謝謝版主的幫忙:))</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：hsin</title>
		<link>http://blog.hsin.tw/2008/javascript-vertical-carousel/comment-page-1/#comment-4152</link>
		<dc:creator>hsin</dc:creator>
		<pubDate>Tue, 07 Jun 2011 12:26:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hsin.tw/?p=83#comment-4152</guid>
		<description>沒有碼我也不確定你的問題在哪
有可能的一個問題是
你應該要把script部份 擺在html碼之後
如果在操作的html碼還沒生成前 就執行js
這樣會因為找不到標籤 而有發生錯誤

ex:
&lt;html&gt;
&lt;body&gt;
html的部份
...
javascript碼的部份
&lt;/body&gt;
&lt;/html&gt;


如果堅持要擺在&lt;head&gt;中的話
就要用onload之類的東西來使用
如果需要的話再深入研究吧 咕狗看看
不然就是用上面講的 把script碼 擺在html碼之後</description>
		<content:encoded><![CDATA[<p>沒有碼我也不確定你的問題在哪<br />
有可能的一個問題是<br />
你應該要把script部份 擺在html碼之後<br />
如果在操作的html碼還沒生成前 就執行js<br />
這樣會因為找不到標籤 而有發生錯誤</p>
<p>ex:<br />
&lt;html&gt;<br />
&lt;body&gt;<br />
html的部份<br />
&#8230;<br />
javascript碼的部份<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>如果堅持要擺在&lt;head&gt;中的話<br />
就要用onload之類的東西來使用<br />
如果需要的話再深入研究吧 咕狗看看<br />
不然就是用上面講的 把script碼 擺在html碼之後</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：Patty</title>
		<link>http://blog.hsin.tw/2008/javascript-vertical-carousel/comment-page-1/#comment-4150</link>
		<dc:creator>Patty</dc:creator>
		<pubDate>Tue, 07 Jun 2011 11:19:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hsin.tw/?p=83#comment-4150</guid>
		<description>sorry,

我是把javascript的部分貼在 script標籤 裡
再放到 head 標籤 裡
html部分放在 body標籤 裡
可是他不會動&gt;&lt;&quot;
實在不理解為什麼會這樣</description>
		<content:encoded><![CDATA[<p>sorry,</p>
<p>我是把javascript的部分貼在 script標籤 裡<br />
再放到 head 標籤 裡<br />
html部分放在 body標籤 裡<br />
可是他不會動&gt;&lt;&quot;<br />
實在不理解為什麼會這樣</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：hsin</title>
		<link>http://blog.hsin.tw/2008/javascript-vertical-carousel/comment-page-1/#comment-4117</link>
		<dc:creator>hsin</dc:creator>
		<pubDate>Sun, 05 Jun 2011 09:16:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hsin.tw/?p=83#comment-4117</guid>
		<description>我看不懂你的問題
你有完整的原始碼放在網路上嗎?</description>
		<content:encoded><![CDATA[<p>我看不懂你的問題<br />
你有完整的原始碼放在網路上嗎?</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：Patty</title>
		<link>http://blog.hsin.tw/2008/javascript-vertical-carousel/comment-page-1/#comment-4113</link>
		<dc:creator>Patty</dc:creator>
		<pubDate>Sun, 05 Jun 2011 05:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hsin.tw/?p=83#comment-4113</guid>
		<description>請問這個要怎麼弄呢??
我把javascript的部分貼在 裡
再放到 裡
html部分放在裡
可是他不會動耶&gt;&lt;&quot;
麻煩版主幫我解答*跪求，謝謝

*sorry，上一篇沒弄好，還請刪除，謝謝</description>
		<content:encoded><![CDATA[<p>請問這個要怎麼弄呢??<br />
我把javascript的部分貼在 裡<br />
再放到 裡<br />
html部分放在裡<br />
可是他不會動耶&gt;&lt;&quot;<br />
麻煩版主幫我解答*跪求，謝謝</p>
<p>*sorry，上一篇沒弄好，還請刪除，謝謝</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：hsin</title>
		<link>http://blog.hsin.tw/2008/javascript-vertical-carousel/comment-page-1/#comment-2541</link>
		<dc:creator>hsin</dc:creator>
		<pubDate>Fri, 11 Mar 2011 06:05:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hsin.tw/?p=83#comment-2541</guid>
		<description>目前這個版本已經可以滑鼠指到的時候會停止
你的問題是這個嗎?</description>
		<content:encoded><![CDATA[<p>目前這個版本已經可以滑鼠指到的時候會停止<br />
你的問題是這個嗎?</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：cheney</title>
		<link>http://blog.hsin.tw/2008/javascript-vertical-carousel/comment-page-1/#comment-2539</link>
		<dc:creator>cheney</dc:creator>
		<pubDate>Fri, 11 Mar 2011 05:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hsin.tw/?p=83#comment-2539</guid>
		<description>請問,如果要讓它自動上下捲動,但滑鼠指到時停止,要改哪些部份呢? 謝謝!

來自 taioaan</description>
		<content:encoded><![CDATA[<p>請問,如果要讓它自動上下捲動,但滑鼠指到時停止,要改哪些部份呢? 謝謝!</p>
<p>來自 taioaan</p>
]]></content:encoded>
	</item>
</channel>
</rss>

