亚洲av无码专区在线电影,亚洲国产精品白丝在线观看 ,亚洲情侣偷拍精品http://m.tkk7.com/yangxiang/zh-cnSun, 11 May 2025 23:01:02 GMTSun, 11 May 2025 23:01:02 GMT60軟件編程21法則http://m.tkk7.com/yangxiang/archive/2010/09/30/333457.html『 Y X 』『 Y X 』Thu, 30 Sep 2010 01:50:00 GMThttp://m.tkk7.com/yangxiang/archive/2010/09/30/333457.htmlhttp://m.tkk7.com/yangxiang/comments/333457.htmlhttp://m.tkk7.com/yangxiang/archive/2010/09/30/333457.html#Feedback0http://m.tkk7.com/yangxiang/comments/commentRss/333457.htmlhttp://m.tkk7.com/yangxiang/services/trackbacks/333457.html[英文出處]:21 Laws of Computer Programming
[譯文出處]:外刊IT評論


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

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


]]>
Eclipse快捷鍵無效的問題http://m.tkk7.com/yangxiang/archive/2010/08/24/329736.html『 Y X 』『 Y X 』Tue, 24 Aug 2010 01:55:00 GMThttp://m.tkk7.com/yangxiang/archive/2010/08/24/329736.htmlhttp://m.tkk7.com/yangxiang/comments/329736.htmlhttp://m.tkk7.com/yangxiang/archive/2010/08/24/329736.html#Feedback0http://m.tkk7.com/yangxiang/comments/commentRss/329736.htmlhttp://m.tkk7.com/yangxiang/services/trackbacks/329736.html
在工具欄(Toolbars)上面點擊右鍵,選擇“Customize Perspective...”

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




]]>
遺留系統(tǒng)引用spring管理的beanhttp://m.tkk7.com/yangxiang/archive/2010/06/15/323636.html『 Y X 』『 Y X 』Tue, 15 Jun 2010 11:22:00 GMThttp://m.tkk7.com/yangxiang/archive/2010/06/15/323636.htmlhttp://m.tkk7.com/yangxiang/comments/323636.htmlhttp://m.tkk7.com/yangxiang/archive/2010/06/15/323636.html#Feedback0http://m.tkk7.com/yangxiang/comments/commentRss/323636.htmlhttp://m.tkk7.com/yangxiang/services/trackbacks/323636.html

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

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

1.比如:我這里建一個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)建的對象可以引用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.如果老是寫SpringContext.getContext().getBean("...");麻煩,可以建一個工廠類來返回你要 的bean

package net.blogjava.chenlb;

public class MyServerFactory {

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



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



]]>
JSP中調(diào)用Spring管理的Beanhttp://m.tkk7.com/yangxiang/archive/2010/06/15/323635.html『 Y X 』『 Y X 』Tue, 15 Jun 2010 11:18:00 GMThttp://m.tkk7.com/yangxiang/archive/2010/06/15/323635.htmlhttp://m.tkk7.com/yangxiang/comments/323635.htmlhttp://m.tkk7.com/yangxiang/archive/2010/06/15/323635.html#Feedback0http://m.tkk7.com/yangxiang/comments/commentRss/323635.htmlhttp://m.tkk7.com/yangxiang/services/trackbacks/323635.html <%@ page import="org.springframework.web.context.WebApplicationContext" %>
<%
    WebApplicationContext context =    WebApplicationContextUtils.getRequiredWebApplicationContext(this.getServletContext());
    SomeBean bean=(SomeBean)context.getBean(SomeBean.class);
%>



]]>
java使用XSL+XML生成HTML文件http://m.tkk7.com/yangxiang/archive/2009/08/11/290688.html『 Y X 』『 Y X 』Tue, 11 Aug 2009 09:05:00 GMThttp://m.tkk7.com/yangxiang/archive/2009/08/11/290688.htmlhttp://m.tkk7.com/yangxiang/comments/290688.htmlhttp://m.tkk7.com/yangxiang/archive/2009/08/11/290688.html#Feedback1http://m.tkk7.com/yangxiang/comments/commentRss/290688.htmlhttp://m.tkk7.com/yangxiang/services/trackbacks/290688.html
<?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)識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)識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)識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



]]>
vim查找替換小結(jié)【轉(zhuǎn)】http://m.tkk7.com/yangxiang/archive/2009/07/29/288975.html『 Y X 』『 Y X 』Wed, 29 Jul 2009 15:12:00 GMThttp://m.tkk7.com/yangxiang/archive/2009/07/29/288975.htmlhttp://m.tkk7.com/yangxiang/comments/288975.htmlhttp://m.tkk7.com/yangxiang/archive/2009/07/29/288975.html#Feedback0http://m.tkk7.com/yangxiang/comments/commentRss/288975.htmlhttp://m.tkk7.com/yangxiang/services/trackbacks/288975.html

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

0,:g/null/d

找到null的行并且刪掉

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

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

:%s/four/4/g

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

    如果你有一個象 “thirtyfour” 這樣的單詞,上面的命令會出錯。這種情況下,這個單詞會被替換成”thirty4″。要解決這個問題,用 “\<” 來指定匹配單詞開頭:

         :%s/\<four/4/g

顯然,這樣在處理 “fourty” 的時候還是會出錯。用 “\>” 來解決這個問題:

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

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

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

2,刪除多余的空格

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

         :%s/\s\+$//

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

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

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

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

         /a*

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

         /\(ab\)*

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

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

         /ab\+

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

要匹配一個可選項,用 “\=”。 例如:

         /folders\=

匹配 “folder” 和 “folders”。

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

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

         /ab\{3,5}

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

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

         模式            匹配次數(shù)

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

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

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

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

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

         \{3}              3

5,多選一匹配

在一個查找模式中,”或” 運算符是 “\|”。例如:

         /foo\|bar

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

         /one\|two\|three

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

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

         /\(foo\|bar\)\+

這個命令匹配 “foo”,”foobar”,”foofoo”,”barfoobar”,等等。

    再舉個例子:

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

這個命令匹配 “endif”,”endwhile” 和 “endfor”。



]]>
Uploadify的使用(java版)http://m.tkk7.com/yangxiang/archive/2009/07/29/288888.html『 Y X 』『 Y X 』Wed, 29 Jul 2009 07:01:00 GMThttp://m.tkk7.com/yangxiang/archive/2009/07/29/288888.htmlhttp://m.tkk7.com/yangxiang/comments/288888.htmlhttp://m.tkk7.com/yangxiang/archive/2009/07/29/288888.html#Feedback72http://m.tkk7.com/yangxiang/comments/commentRss/288888.htmlhttp://m.tkk7.com/yangxiang/services/trackbacks/288888.htmlUploadify是jQuery的插件,用于web的多文件(或單文件)上傳。需要flash和后臺程序支持。多種自定義選項適合于高級使用者,也可以做簡單的最基本的實現(xiàn),即使一個初學(xué)者也能完成。  閱讀全文

]]>
JavaScript圖片瀏覽器——Galleriffichttp://m.tkk7.com/yangxiang/archive/2009/07/17/287211.html『 Y X 』『 Y X 』Fri, 17 Jul 2009 15:09:00 GMThttp://m.tkk7.com/yangxiang/archive/2009/07/17/287211.htmlhttp://m.tkk7.com/yangxiang/comments/287211.htmlhttp://m.tkk7.com/yangxiang/archive/2009/07/17/287211.html#Feedback0http://m.tkk7.com/yangxiang/comments/commentRss/287211.htmlhttp://m.tkk7.com/yangxiang/services/trackbacks/287211.html
這種東西網(wǎng)上一大把,但是完全符合要求的確并不多,找了半天發(fā)現(xiàn)了Galleriffic,首先看界面就知道符合功能需求。



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

再看看亮點:
  • Smart image preloading after the page is loaded    //智能圖片加載
  • Thumbnail navigation (with pagination)     //縮略圖導(dǎo)航,帶翻頁
  • Support for bookmark-friendly URLs per-image     //為圖片產(chǎn)生的URL適合收藏到收藏夾
  • Slideshow (with optional auto-updating url bookmarks)     //自動播放,并且播放時會自動更新地址欄地址
  • 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     //無JavaScript時也比較友好
  • Support for multiple galleries per page     //支持單頁面的多個相冊集

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


    作品主頁很簡單,就放在下面把。

     


    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!



  • ]]>
    主站蜘蛛池模板: 东北美女野外bbwbbw免费| 久久久久国产成人精品亚洲午夜 | 亚洲一区二区三区久久久久| 亚洲综合亚洲综合网成人| 成年女人喷潮毛片免费播放| 久久精品无码专区免费东京热| 免费观看四虎精品成人| 亚洲中文字幕精品久久| 亚洲天堂一区二区三区四区| 久久久久亚洲精品影视| 亚洲中文字幕久久精品无码喷水 | 亚洲黄页网在线观看| 亚洲综合一区二区国产精品| 亚洲国产综合无码一区| 国产成人高清亚洲| 四虎永久在线精品视频免费观看| 免费看国产成年无码AV片 | 亚洲国产日韩在线| 亚洲午夜免费视频| 亚洲成在人天堂在线| 亚洲va在线va天堂va不卡下载| 国产亚洲AV手机在线观看| 亚洲国产精品专区在线观看 | 曰韩无码AV片免费播放不卡 | 国产成人亚洲综合| 亚洲国产精品一区二区九九 | 中文字幕一区二区免费| EEUSS影院WWW在线观看免费 | 亚洲AV永久无码精品成人| 亚洲精品卡2卡3卡4卡5卡区| 自拍偷自拍亚洲精品第1页| 亚洲无线码一区二区三区| 久久被窝电影亚洲爽爽爽| 亚洲AV无码国产丝袜在线观看| 亚洲国产成人一区二区三区| 亚洲av无码乱码国产精品fc2| 久久精品亚洲视频| 亚洲白嫩在线观看| 国产亚洲中文日本不卡二区| 亚洲一日韩欧美中文字幕在线| 亚洲精品无AMM毛片|