<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    yangxiang

      BlogJava :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
      8 隨筆 :: 0 文章 :: 73 評(píng)論 :: 0 Trackbacks

    2009年7月17日 #

    [英文出處]:21 Laws of Computer Programming
    [譯文出處]:外刊IT評(píng)論


    任何一個(gè)有經(jīng)驗(yàn)的程序員都知道,軟件開(kāi)發(fā)遵循著一些不成文的法則。然而,如果你不遵循這些法則也并不意味著會(huì)受到懲罰;相反,有時(shí)你還會(huì)獲得意外的好處。下面的就是軟件編程中的21條法則:

    1. 任何程序一旦部署即顯陳舊。
    2. 修改需求規(guī)范來(lái)適應(yīng)程序比反過(guò)來(lái)做更容易。
    3. 一個(gè)程序如果很有用,那它注定要被改掉。
    4. 一個(gè)程序如果沒(méi)用,那它一定會(huì)有很好的文檔。
    5. 任何程序里都僅僅只有10%的代碼會(huì)被執(zhí)行到。
    6. 軟件會(huì)一直膨脹到耗盡所有資源為止。
    7. 任何一個(gè)有點(diǎn)價(jià)值的程序里都會(huì)有至少一個(gè)bug。
    8. 原型完美的程度跟審視的人數(shù)成反比,反比值會(huì)隨著涉及的資金數(shù)增大。
    9. 軟件直到被變成產(chǎn)品運(yùn)行至少6個(gè)月后,它最嚴(yán)重的問(wèn)題才會(huì)被發(fā)現(xiàn)。
    10. 無(wú)法檢測(cè)到的錯(cuò)誤的形式無(wú)限多樣,而能被檢測(cè)到的正好相反,被定義了的十分有限。
    11. 修復(fù)一個(gè)錯(cuò)誤所需要投入的努力會(huì)隨著時(shí)間成指數(shù)級(jí)增加。
    12. 軟件的復(fù)雜度會(huì)一直增加,直到超出維護(hù)這個(gè)程序的人的承受能力。
    13. 任何自己的程序,幾個(gè)月不看,形同其他人寫(xiě)的。
    14. 任何一個(gè)小程序里面都有一個(gè)巨大的程序蠢蠢欲出。
    15. 編碼開(kāi)始的越早,花費(fèi)的時(shí)間越長(zhǎng)。
    16. 一個(gè)粗心的項(xiàng)目計(jì)劃會(huì)讓你多花3倍的時(shí)間去完成;一個(gè)細(xì)心的項(xiàng)目計(jì)劃只會(huì)讓你多花2倍的時(shí)間。
    17. 往大型項(xiàng)目里添加人手會(huì)使項(xiàng)目更延遲。
    18. 一個(gè)程序至少會(huì)完成90%,但永遠(yuǎn)完成不了超過(guò)95%。
    19. 如果你想麻煩被自動(dòng)處理掉,你得到的是自動(dòng)產(chǎn)生的麻煩。
    20. 開(kāi)發(fā)一個(gè)傻瓜都會(huì)使用的軟件,只有傻瓜愿意使用它。
    21. 用戶不會(huì)真正的知道要在軟件里做些什么,除非使用過(guò)。
    posted @ 2010-09-30 09:50 『 Y X 』 閱讀(272) | 評(píng)論 (0)編輯 收藏

    Eclipse快捷鍵按了沒(méi)有反應(yīng)可能是和其他程序設(shè)置的快捷鍵沖突了,如果確認(rèn)沒(méi)有沖突,可以看看是不是如下問(wèn)題。

    在工具欄(Toolbars)上面點(diǎn)擊右鍵,選擇“Customize Perspective...”

    看看Command Group Availability 里面有沒(méi)有勾選你所設(shè)置的快捷鍵的分組,如果沒(méi)有就勾上,再試試快捷鍵能否使用。


    posted @ 2010-08-24 09:55 『 Y X 』 閱讀(3444) | 評(píng)論 (0)編輯 收藏

        當(dāng)為遺留系統(tǒng)加入spring時(shí),經(jīng)典問(wèn)題就是遺留系統(tǒng)需要引用spring管理的bean。幸好spring有機(jī)制可以處理這些。

        建一個(gè)類實(shí)現(xiàn)ApplicationContextAware接口,有一個(gè)引用ApplicationContext的靜態(tài)成員,然后,遺留系統(tǒng)需要引用spring管理的bean的地方,使用這個(gè)類。

    1.比如:我這里建一個(gè)SpringContext類

    package net.blogjava.chenlb;

    import org.springframework.beans.BeansException;
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.ApplicationContextAware;

    /**
     * 此類可以取得Spring的上下文.
     * Spring 使new方法創(chuàng)建的對(duì)象可以引用spring管理的 bean.
     * 2007-10-18 上午11:12:33
     * 
    @author chenlb
     
    */
    public class SpringContext implements ApplicationContextAware {

        
    protected static ApplicationContext context;
        
        
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
            context 
    = applicationContext;
        }

        
    public static ApplicationContext getContext() {
            
    return context;
        }
    }


    2.然后在spring配置文件里加

    <bean id="springContext" class="net.blogjava.chenlb.SpringContext"></bean>


    3.其它類中引用

    MyBean myBean = (MyBean) SpringContext.getContext().getBean("myBean");


    4.如果老是寫(xiě)SpringContext.getContext().getBean("...");麻煩,可以建一個(gè)工廠類來(lái)返回你要 的bean

    package net.blogjava.chenlb;

    public class MyServerFactory {

        
    public static MyBean1 getMyBean1() {
            
    return (MyBean1) SpringContext.getContext().getBean("myBean1");
        }
    }



    原文:http://chenlb.javaeye.com/blog/135897

    posted @ 2010-06-15 19:22 『 Y X 』 閱讀(321) | 評(píng)論 (0)編輯 收藏

    <%@ page import="org.springframework.web.context.support.WebApplicationContextUtils" %>
    <%@ page import="org.springframework.web.context.WebApplicationContext" %>
    <%
        WebApplicationContext context =    WebApplicationContextUtils.getRequiredWebApplicationContext(this.getServletContext());
        SomeBean bean=(SomeBean)context.getBean(SomeBean.class);
    %>

    posted @ 2010-06-15 19:18 『 Y X 』 閱讀(432) | 評(píng)論 (0)編輯 收藏

    1、xml.xml
    <?xml version="1.0" encoding="utf-8"?>
    <?xml-stylesheet type="text/xsl" href="xsl.xsl"?>
    <book>
        
    <title>XML與JSP</title>
        
    <chapter>
            
    <title>第1章 認(rèn)識(shí)XML與DTD</title>
            
    <section>
                
    <title>XML的產(chǎn)生</title>
                
    <example>HelloWorld.html</example>
            
    </section>
        
    </chapter>
        
    <chapter>
            
    <title>第2章 XML名稱空間</title>
            
    <section>
                
    <title>名稱空間在元素和屬性中的應(yīng)用</title>
                
    <section>
                    
    <title>名稱空間在元素中的應(yīng)用</title>
                    
    <example>people.xml</example>
                
    </section>
                
    <section>
                    
    <title>缺省名稱空間</title>
                    
    <example>book.xml</example>
                
    </section>
                
    <section>
                    
    <title>名稱空間在屬性中的應(yīng)用</title>
                    
    <example>book2.xml</example>
                
    </section>
            
    </section>
            
    <section>
                
    <title>名稱空間和DTD</title>
            
    </section>
        
    </chapter>
    </book>

    2、xsl.xsl
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
        
    <xsl:output method="html" version="1.0" encoding="utf-8" standalone="yes"/>
        
    <xsl:template match="/">
            
    <html>
                
    <head>
                    
    <title>使用XML+XSLT生成的HTML文件</title>
                
    </head>
                
    <body>
                    
    <xsl:apply-templates select="book"/>
                
    </body>
            
    </html>
        
    </xsl:template>
        
    <xsl:template match="chapter">
            
    <br/>
            
    <br/>
            
    <xsl:value-of select="./title"/>
            
    <xsl:apply-templates select="./section"/>
        
    </xsl:template>
        
    <xsl:template match="chapter/section">
            
    <br/>
            
    <br/>
            
    <xsl:text>    </xsl:text>
            
    <!--<xsl:number format="1. " level="multiple"/>-->
            
    <xsl:number format="1. " level="multiple" count="chapter | section" from="book"/>
            
    <xsl:value-of select="./title"/>
            
    <xsl:apply-templates select="./section"/>
        
    </xsl:template>
        
    <xsl:template match="chapter/section/section">
            
    <br/>
            
    <br/>
            
    <xsl:text>        </xsl:text>
            
    <!--<xsl:number format="1. " level="multiple"/>-->
            
    <xsl:number format="1. " level="multiple" count="chapter | section" from="book"/>
            
    <xsl:value-of select="./title"/>
            
    <xsl:number value="123456789" grouping-separator="," grouping-size="3"/>
        
    </xsl:template>
    </xsl:stylesheet>

    3、java.java
    package test;

    import java.io.File;
    import java.io.IOException;

    import javax.xml.transform.Result;
    import javax.xml.transform.Source;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerConfigurationException;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.stream.StreamResult;
    import javax.xml.transform.stream.StreamSource;

    import org.junit.Test;

    public class Train {
        @Test
        
    public void test() throws IOException {
            String xmlFileName 
    = "d:/test/xml.xml";
            String xslFileName 
    = "d:/test/xsl.xsl";
            String htmlFileName 
    = "d:/test/html.html";
            Train.Transform(xmlFileName, xslFileName, htmlFileName);
        }

        
    public static void Transform(String xmlFileName, String xslFileName,
                String htmlFileName) {
            
    try {
                TransformerFactory tFac 
    = TransformerFactory.newInstance();
                Source xslSource 
    = new StreamSource(xslFileName);
                Transformer t 
    = tFac.newTransformer(xslSource);
                File xmlFile 
    = new File(xmlFileName);
                File htmlFile 
    = new File(htmlFileName);
                Source source 
    = new StreamSource(xmlFile);
                Result result 
    = new StreamResult(htmlFile);
                System.out.println(result.toString());
                t.transform(source, result);
            } 
    catch (TransformerConfigurationException e) {
                e.printStackTrace();
            } 
    catch (TransformerException e) {
                e.printStackTrace();
            }
        }
    }

    4、html.html
    <html>
    <head>
    <META http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>使用XML+XSLT生成的HTML文件</title>
    </head>
    <body>
        XML與JSP
        
    <br>
    <br>第1章 認(rèn)識(shí)XML與DTD<br>
    <br>&nbsp;&nbsp;&nbsp;&nbsp;1.1. XML的產(chǎn)生
        
    <br>
    <br>第2章 XML名稱空間<br>
    <br>&nbsp;&nbsp;&nbsp;&nbsp;2.1. 名稱空間在元素和屬性中的應(yīng)用<br>
    <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.1.1. 名稱空間在元素中的應(yīng)用123,456,789<br>
    <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.1.2. 缺省名稱空間123,456,789<br>
    <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.1.3. 名稱空間在屬性中的應(yīng)用123,456,789<br>
    <br>&nbsp;&nbsp;&nbsp;&nbsp;2.2. 名稱空間和DTD
    </body>
    </html>

    5、效果
    XML與JSP

    第1章 認(rèn)識(shí)XML與DTD

        1.1. XML的產(chǎn)生

    第2章 XML名稱空間

        2.1. 名稱空間在元素和屬性中的應(yīng)用

            2.1.1. 名稱空間在元素中的應(yīng)用123,456,789

            2.1.2. 缺省名稱空間123,456,789

            2.1.3. 名稱空間在屬性中的應(yīng)用123,456,789

        2.2. 名稱空間和DTD

    posted @ 2009-08-11 17:05 『 Y X 』 閱讀(5073) | 評(píng)論 (1)編輯 收藏

    VIM中常用的替換模式總結(jié)。

    0,:g/null/d

    找到null的行并且刪掉

    1,簡(jiǎn)單替換表達(dá)式

    替換命令可以在全文中用一個(gè)單詞替換另一個(gè)單詞:

    :%s/four/4/g

    “%” 范圍前綴表示在所有行中執(zhí)行替換。最后的 “g” 標(biāo)記表示替換行中的所有匹配點(diǎn)。如果僅僅對(duì)當(dāng)前行進(jìn)行操作,那么只要去掉%即可

        如果你有一個(gè)象 “thirtyfour” 這樣的單詞,上面的命令會(huì)出錯(cuò)。這種情況下,這個(gè)單詞會(huì)被替換成”thirty4″。要解決這個(gè)問(wèn)題,用 “\<” 來(lái)指定匹配單詞開(kāi)頭:

             :%s/\<four/4/g

    顯然,這樣在處理 “fourty” 的時(shí)候還是會(huì)出錯(cuò)。用 “\>” 來(lái)解決這個(gè)問(wèn)題:

             :%s/\<four\>/4/g

    如果你在編碼,你可能只想替換注釋中的 “four”,而保留代碼中的。由于這很難指定,可以在替換命令中加一個(gè) “c” 標(biāo)記,這樣,Vim 會(huì)在每次替換前提示你:

             :%s/\<four\>/4/gc

    2,刪除多余的空格

    要?jiǎng)h除這些每行后面多余的空格,可以執(zhí)行如下命令:

             :%s/\s\+$//

    命令前面指明范圍是 “%”,所以這會(huì)作用于整個(gè)文件。”substitute” 命令的匹配模式是

    “\s\+$”。這表示行末($)前的一個(gè)或者多個(gè)(\+)空格(\s)。替換命令的 “to” 部分是空的:”//”。這樣就會(huì)刪除那些匹配的空白字符。

    3,匹配重復(fù)性模式

    星號(hào)項(xiàng) “*” 規(guī)定在它前面的項(xiàng)可以重復(fù)任意次。因此:

             /a*

    匹配 “a”,”aa”,”aaa”,等等。但也匹配 “” (空字串),因?yàn)榱愦我舶趦?nèi)。星號(hào) “*” 僅僅應(yīng)用于那個(gè)緊鄰在它前面的項(xiàng)。因此 “ab*” 匹配 “a”,”ab”,”abb”,”abbb”,等等。如要多次重復(fù)整個(gè)字符串,那么該字符串必須被組成一個(gè)項(xiàng)。組成一項(xiàng)的方法就是在它前面加 “\(”,后面加 “\)”。因此這個(gè)命令:

             /\(ab\)*

    匹配: “ab”,”abab”,”ababab”,等等。而且也匹配 “”。

    要避免匹配空字串,使用 “\+”。這表示前面一項(xiàng)可以被匹配一次或多次。

             /ab\+

    匹配 “ab”,”abb”,”abbb”,等等。它不匹配 后面沒(méi)有跟隨 “b” 的 “a”。

    要匹配一個(gè)可選項(xiàng),用 “\=”。 例如:

             /folders\=

    匹配 “folder” 和 “folders”。

    4,指定重復(fù)次數(shù)

    要匹配某一項(xiàng)的特定次數(shù)重復(fù),使用 “\{n,m}” 這樣的形式。其中 “n” 和 “m” 都是數(shù)字。在它前面的那個(gè)項(xiàng)將被重復(fù) “n” 到 “m” 次 (|inclusive| 包含 “n” 和 “m”)。例如:

             /ab\{3,5}

    匹配 “abbb”,”abbbb” 以及 “abbbbb”。

        當(dāng) “n” 省略時(shí),被默認(rèn)為零。當(dāng) “m” 省略時(shí),被默認(rèn)為無(wú)限大。當(dāng) “,m” 省略時(shí),就表示重復(fù)正好 “n” 次。例如:

             模式            匹配次數(shù)

             \{,4}             0,1,2,3 或 4

             \{3,}             3,4,5,等等

             \{0,1}            0 或 1,同 \=

             \{0,}             0 或 更多,同 *

             \{1,}             1 或 更多,同 \+

             \{3}              3

    5,多選一匹配

    在一個(gè)查找模式中,”或” 運(yùn)算符是 “\|”。例如:

             /foo\|bar

    這個(gè)命令匹配了 “foo” 或 “bar”。更多的抉擇可以連在后面:

             /one\|two\|three

    匹配 “one”,”two” 或 “three”。

        如要匹配其多次重復(fù),那么整個(gè)抉擇結(jié)構(gòu)須置于 “\(” 和 “\)” 之間:

             /\(foo\|bar\)\+

    這個(gè)命令匹配 “foo”,”foobar”,”foofoo”,”barfoobar”,等等。

        再舉個(gè)例子:

             /end\(if\|while\|for\)

    這個(gè)命令匹配 “endif”,”endwhile” 和 “endfor”。

    posted @ 2009-07-29 23:12 『 Y X 』 閱讀(766) | 評(píng)論 (0)編輯 收藏

         摘要: Uploadify is a jQuery plugin that allows the easy integration of a multiple (or single) file uploads on your website. It requires Flash and any backend development language. An array of options allow for full customization for advanced users, but basic implementation is so easy that even coding novices can do it.
    Uploadify是jQuery的插件,用于web的多文件(或單文件)上傳。需要flash和后臺(tái)程序支持。多種自定義選項(xiàng)適合于高級(jí)使用者,也可以做簡(jiǎn)單的最基本的實(shí)現(xiàn),即使一個(gè)初學(xué)者也能完成。  閱讀全文
    posted @ 2009-07-29 15:01 『 Y X 』 閱讀(48674) | 評(píng)論 (72)編輯 收藏

    由于要做一個(gè)網(wǎng)絡(luò)相冊(cè)程序,想在瀏覽相冊(cè)圖片的時(shí)候能顯示縮略圖,點(diǎn)擊縮略圖可以顯示大圖,縮略圖可翻頁(yè),并且相片路徑是程序動(dòng)態(tài)生成而不是在配置文件中寫(xiě)死的。

    這種東西網(wǎng)上一大把,但是完全符合要求的確并不多,找了半天發(fā)現(xiàn)了Galleriffic,首先看界面就知道符合功能需求。



    然后看看例子的代碼,也很清晰,幾個(gè)DIV,一個(gè)圖片列表,適合代碼的動(dòng)態(tài)生成。當(dāng)然他給的說(shuō)明里面沒(méi)有讓加上CSS,其實(shí)還是需要添加的,自己也可以根據(jù)情況進(jìn)行修改。

    再看看亮點(diǎn):
  • Smart image preloading after the page is loaded    //智能圖片加載
  • Thumbnail navigation (with pagination)     //縮略圖導(dǎo)航,帶翻頁(yè)
  • Support for bookmark-friendly URLs per-image     //為圖片產(chǎn)生的URL適合收藏到收藏夾
  • Slideshow (with optional auto-updating url bookmarks)     //自動(dòng)播放,并且播放時(shí)會(huì)自動(dòng)更新地址欄地址
  • Events that allow for adding your own custom transition effects     //可以自己添加變換效果
  • Support for image captions     // 支持圖片標(biāo)題
  • Flexible configuration     //靈活的配置
  • Graceful degradation when javascript is not available     //無(wú)JavaScript時(shí)也比較友好
  • Support for multiple galleries per page     //支持單頁(yè)面的多個(gè)相冊(cè)集

    滿足需求,優(yōu)點(diǎn)不少,雖然沒(méi)有時(shí)間測(cè)試所有聲稱的東西,但是大致試了一下,效果還不錯(cuò)。注意縮略圖是指定的自己在硬盤(pán)上已經(jīng)生成好的圖片文件,而不是在頁(yè)面中再來(lái)縮放的,據(jù)他的說(shuō)法是這樣對(duì)減小帶寬占用有利,對(duì)用戶瀏覽器的處理能力也要求更低,事實(shí)確實(shí)如此。加載幾十張巨大的圖片和幾十張很小的縮略圖,差別就很明顯了。


    作品主頁(yè)很簡(jiǎn)單,就放在下面把。

     


    Galleriffic

    A jQuery plugin for rendering fast-performing photo galleries

    Galleriffic was inspired by Mike Alsup's Cycle plugin, but with performance in mind for delivering a high volume of photos. This is my first experiment with jQuery, so I would love feedback on how to improve this plugin. I am not so great at spelling, and it was much later that I realized that the more appropriate spellings would be Gallerific or Gallerrific, but is too late now for a name change, so Galleriffic remains.

    Examples

    Features

    • Smart image preloading after the page is loaded
    • Thumbnail navigation (with pagination)
    • Support for bookmark-friendly URLs per-image
    • Slideshow (with optional auto-updating url bookmarks)
    • Events that allow for adding your own custom transition effects
    • Support for image captions
    • Flexible configuration
    • Graceful degradation when javascript is not available
    • Support for multiple galleries per page

    Usage

    1. Download the latest version of Galleriffic below and jQuery 1.2.6 or later (use other versions of jQuery at your own risk)
    2. Setup the script references in the header:
      <head>
          ...
          <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
          <script type="text/javascript" src="js/jquery.galleriffic.js"></script>
          ...
          </head>
                                  
    3. Add container elements to your page. All container elements are optional, so you may choose to not include an area (such as the loading or caption container elements). Here is an example of all the elements needed for a full-featured setup:
      <div id="controls"></div>
          <div id="loading"></div>
          <div id="slideshow"></div>
          <div id="caption"></div>
          <div id="thumbs">
          ... graceful degrading list of thumbnails (specific format specified below) ...
          </div>
                                  
    4. Within the thumbnails container element, build your graceful degrading unordered list of thumbnails linking to the image slides as such:
      <ul class="thumbs noscript">
          <li>
               <a class="thumb" href="path/to/slide" title="your image title">
                  <img src="path/to/thumbnail" alt="your image title again for graceful degradation" />
               </a>
                  <div class="caption">
                      (Any html can go here)
                  </div>
          </li>
          ... (repeat for every image in the gallery)
          </ul>
                                  
      It is important to specify the 'thumb' class for the link that should serve as the thumbnail and the 'caption' class for the element that should serve as the caption. When an image is selected for display in the slideshow, any elements with the 'caption' class will be rendered within the specified caption container element above.
    5. Initialize the gallery by calling the galleriffic initialization function with two arguments, the thumbnails container selector and an options hash. The following example shows the default options:
      $(document).ready(function() {
              var gallery = $('#gallery').galleriffic('#thumbs', {
                  delay:                  3000 // in milliseconds
                  numThumbs:              20 // The number of thumbnails to show page
                  preloadAhead:           40 // Set to -1 to preload all images
                  enableTopPager:         false,
                  enableBottomPager:      true,
                  imageContainerSel:      '', // The CSS selector for the element within which the main slideshow image should be rendered
                  controlsContainerSel:   '', // The CSS selector for the element within which the slideshow controls should be rendered
                  captionContainerSel:    '', // The CSS selector for the element within which the captions should be rendered
                  loadingContainerSel:    '', // The CSS selector for the element within which should be shown when an image is loading
                  renderSSControls:       true, // Specifies whether the slideshow's Play and Pause links should be rendered
                  renderNavControls:      true, // Specifies whether the slideshow's Next and Previous links should be rendered
                  playLinkText:           'Play',
                  pauseLinkText:          'Pause',
                  prevLinkText:           'Previous',
                  nextLinkText:           'Next',
                  nextPageLinkText:       'Next &rsaquo;',
                  prevPageLinkText:       '&lsaquo; Prev',
                  enableHistory:          false, // Specifies whether the url's hash and the browser's history cache should update when the current slideshow image changes 
                  autoStart:              false, // Specifies whether the slideshow should be playing or paused when the page first loads 
                  onChange:               undefined, // accepts a delegate like such: function(prevIndex, nextIndex) { ... }
                  onTransitionOut:        undefined, // accepts a delegate like such: function(callback) { ... }
                  onTransitionIn:         undefined, // accepts a delegate like such: function() { ... }
                  onPageTransitionOut:    undefined, // accepts a delegate like such: function(callback) { ... }
                  onPageTransitionIn:     undefined  // accepts a delegate like such: function() { ... }
              });
          });
                                  

    Download

    Extras

    I put together a jAlbum skin to make building static albums a breeze. Check it out here.

    Feedback

    I made alot of assumptions based on my own personal needs, so please make your needs known here and I will take them into consideration for future releases. I'd also like to keep a list of sites making use of Galleriffic, so if this is you, please email me (trent [at] twospy.com) your Web site's URL and indicate whether or not I may list it publicly.

    Donate

    If you find Galleriffic useful and would sleep better knowing you gave something back, feel free to make a donation!

  • posted @ 2009-07-17 23:09 『 Y X 』 閱讀(1220) | 評(píng)論 (0)編輯 收藏

    主站蜘蛛池模板: 中文字幕在线免费看线人| 久久亚洲精品成人无码| 国产精品视频白浆免费视频| 亚洲精品麻豆av| a成人毛片免费观看| 一区国严二区亚洲三区| 美女被免费网站在线视频免费| 免费看www视频| 国产大陆亚洲精品国产| 亚洲国产精品日韩| 久久精品免费网站网| 亚洲色大成网站www永久一区| 精品熟女少妇aⅴ免费久久 | 亚洲中文字幕一二三四区苍井空 | 我们的2018在线观看免费高清| 亚洲理论片在线观看| 国产精品久久免费| 亚洲欧美成人一区二区三区| 成全视频免费高清| 免费国产在线精品一区| 亚洲色无码一区二区三区| 久久国产精品免费专区| 亚洲国产成人精品电影| 国产又粗又长又硬免费视频| aa级女人大片喷水视频免费| 亚洲色图在线观看| 热久久精品免费视频| 一级视频在线免费观看| 亚洲精品在线播放视频| 天天摸夜夜摸成人免费视频| 久香草视频在线观看免费| 久久夜色精品国产噜噜噜亚洲AV| 歪歪漫画在线观看官网免费阅读 | 国产国拍亚洲精品福利| 亚洲精品123区在线观看| 国产一区二区三区无码免费| 91成人免费福利网站在线| 亚洲H在线播放在线观看H| 亚洲精品无码AV中文字幕电影网站| 曰批全过程免费视频在线观看无码| 亚洲人成电影在线观看青青|