跳到主要內容

DIY賀卡活動

這個活動可說是我一肩挑起, 從企劃發想, 流程規畫, 頁面設計與執行, 過程很辛苦, 卻收穫很多, 重點是學會如何要贈品, 雖然是公司的活動, 但是贈品還是需要有單位願意投資, 企劃案該如何說服對方是很重要的關鍵, 尤其這是個品牌曝光的活動, 如何將產品點出來, 會造成哪些效益, 是很重要的課題, 竭盡心力做的活動, 果然有個好成績。

活動首頁DEMO:http://cindy8.myweb.hinet.net/demo_05xmas/ecard_main.htm

留言

這個網誌中的熱門文章

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/