跳到主要內容

Flash Gallery Factory 製作3D Flash 相本

想要快速的製作 Flash Slideshow 或是 Flash 3D Gallery,可恨沒時間爬程式的你,請享用[ Flash Gallery Factory ] 軟體輕鬆完成,官方網站於下方,免費版本發佈時會有公司浮水印。

官方網站:
http://www.flash-gallery-software.com/free-flash-gallery-template.html




My Demo:



軟體使用上相當方便,很直觀,應該打開就會使用,所以就不多介紹了,如果還是有疑惑,可以參考此篇文章,描述的很清楚。

特別要說明的,發佈後的Flash Gallery,圖片檔案是包在 swf 裡面,當照片多的時候,檔案容量會很大,也無法使用 XML 快速的新增、修改,所以比較適合小型專案上使用。

留言

這個網誌中的熱門文章

Indexed Database API - Initail

As a front web developer, I could create UI faster or Optimize file to load page faster. But it hard to faster response time form server however 80-90% of the end-user response time is spent on the frontend. Nowadays we could use the Indexed Database API, or IndexedDB to reduce the request times. Less request times, less response time. What is IndexedDB ? IndexedDB is web browser standard interface for a local database of records holding simple values and hierarchical objects. IndexedDB was initially proposed by Oracle in 2009./* wiki */ What browsers would support IndexedDB ? Most browsers of hybrid devices support it exclude IE9-, Safari 7-,iOS Safari 7.1-, Opera Mini, Android Browser 4.3-./* caniuse.com */ When shall we use IndexedDB ? Save Money on web hosting Data index sort Data keyword search Keep data for period of time How to start it? //*************************************************************** //initDB //{Object}, {data: dbName, objectStore: storeName, ...

最近設計的一組icon..太有APPLE風格被打槍了

jQuery 的slideToggle太好用了

$ ( ".collapse" ) .each ( function ( index, value ) { $ ( this ) . click ( function ( evt ) { evt.preventDefault ( ) ; //prevent the default click event of the anchor tag. var target = $ ( this ) .attr ( "data-toggle" ) ; $ ( "." + target ) .slideToggle ( ) ; } ) ; } ) ; http://code-tricks.com/create-a-common-toggler-for-div-using-jquery/