<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[A.PAO designSTUDIO BLOG]]></title> 
<link>https://blog.apao.idv.tw/index.php</link> 
<description><![CDATA[A.PAO designSTUDIO 阿保工作室]]></description> 
<language>zh-tw</language> 
<copyright><![CDATA[A.PAO designSTUDIO BLOG]]></copyright>
<item>
<link>https://blog.apao.idv.tw/post//</link>
<title><![CDATA[文字說明氣球 (jQuery Bubble Popup)]]></title> 
<author>apao &lt;apao@www.apao.idv.tw&gt;</author>
<category><![CDATA[jQuery]]></category>
<pubDate>Fri, 29 Jul 2011 02:52:19 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post//</guid> 
<description>
<![CDATA[ 
	<a href="https://blog.apao.idv.tw/attachment.php?fid=1191" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=1191" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/>demo：<a href="null" target="_blank">jQuery Bubble Popup</a><br/><br/>這個是以事前指定氣球出現的說明文字但是不是在(TITLE)上指定。可更改淡入淡出的方式，也可更改氣球的顏色，說明文字的多寡，氣球會自動調整。由於淡入淡出的方式，不會影響畫面整體的感覺。<br/><br/><strong>下載點：</strong><br/><a href="http://plugins.jquery.com/project/jqBubblePopup" target="_blank">http://plugins.jquery.com/project/jqBubblePopup</a><br/><br/><strong>下載後，檔案構成：</strong><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=1192" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=1192" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0" width="540"/></a><br/><br/><strong>依照需求放置恰當的檔案夾：</strong><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=1193" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=1193" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0" width="540"/></a><br/><br/><br/><div class="code">&lt;!-- 於&lt;head&gt;與&lt;/head&gt;之 間--&gt;<br/>&lt;!-----------------------------------------------------------------------------------------------&gt;<br/>&lt;!--▼CSSを読み込む--&gt; <br/>&lt;link href=&quot;css/jquery.bubblepopup.v2.3.1.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt; <br/>&lt;!--▼jqueryを読み込む--&gt;<br/>&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; <br/>&lt;!--▼jQuerybubblepopupプラグインを読み込む--&gt; <br/>&lt;script src=&quot;js/jquery.bubblepopup.v2.3.1.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; <br/></div><br/><br/><br/><div class="code">&lt;!-- &lt;body&gt;與&lt;/body&gt;之間，重點是 class=&quot;button&quot; 才會出現&#91;說明氣球&#93; --&gt;<br/>&lt;!-----------------------------------------------------------------------------------------------&gt;<br/>&lt;h1&gt;jQuery Bubble Popupを使ってみる。&lt;/h1&gt; <br/>&lt;div class=&quot;button&quot; style=&quot;margin:100px;&quot;&gt;&nbsp;&nbsp; <br/>&lt;p style=&quot;text-align:center;&quot;&gt;これは&lt;div&gt;タグ内のテキストです。&lt;/p&gt; <br/>&lt;!--/#test1--&gt;&lt;/div&gt; </div><br/><br/><br/><div class="code">&lt;!--於 &lt;/head&gt;之前加入以下Javascript就會出現動畫效果 --&gt;<br/>&lt;!-----------------------------------------------------------------------------------------------&gt;<br/>&lt;script type=&quot;text/javascript&quot;&gt; <br/>&lt;!-- $(document).ready(function()&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//$()の中には、ポップを表示させたい要素のID属性、クラス、タグ名を記述します。<br/>&nbsp;&nbsp;&nbsp;&nbsp; $(&#039;.button&#039;).CreateBubblePopup(&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //▼上からポップを落とす。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; position : &#039;top&#039;, <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//▼要素の真ん中にポップが来るようにする。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; align&nbsp;&nbsp; : &#039;center&#039;,<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //▼ポップ内テキストを設定する。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; innerHtml: &#039;フワッとポップが&lt;br /&gt;出てくることに成功しました！！&#039;,<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //▼ポップ内のスタイル属性を設定する。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; innerHtmlStyle: &#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; color:&#039;#FFFFFF&#039;,<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#039;text-align&#039;:&#039;center&#039;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#125;,<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//▼ポップの色を決める。※jquerybubblepopup-themeフォルダ参照<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; themeName:&nbsp;&nbsp; &#039;all-black&#039;,<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //▼jquerybubblepopup-themeフォルダの相対パスを記述する。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; themePath:&nbsp;&nbsp; &#039;images/jquerybubblepopup-theme&#039; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&#125;); <br/>&#125;); //--&gt; &lt;/script&gt;</div><br/><br/>參考網站：<br/><a href="http://hakashun.net/2011/04/jquery-bubble-popup.html" target="_blank">http://hakashun.net/2011/04/jquery-bubble-popup.html</a><br/><br/>應用網站：<br/><a href="http://www.jetoy.com.tw/02-Products.html" target="_blank">http://www.jetoy.com.tw/02-Products.html</a><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=1195" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=1195" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/><br/>Tags - <a href="https://blog.apao.idv.tw/tags/%25E6%2596%2587%25E5%25AD%2597%25E8%25AA%25AA%25E6%2598%258E%25E6%25B0%25A3%25E7%2590%2583/" rel="tag">文字說明氣球</a> , <a href="https://blog.apao.idv.tw/tags/%2528jquery/" rel="tag">(jquery</a> , <a href="https://blog.apao.idv.tw/tags/bubble/" rel="tag">bubble</a> , <a href="https://blog.apao.idv.tw/tags/popup%2529/" rel="tag">popup)</a>
]]>
</description>
</item><item>
<link>https://blog.apao.idv.tw/post//#blogcomment</link>
<title><![CDATA[[評論] 文字說明氣球 (jQuery Bubble Popup)]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[評論]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>