跳到主要內容

精選文章

ZHANBLUe 湛藍國際股份有限公司官網

這是幫 ZHANBLUe 湛藍國際股份有限公司 官網製作的官網,其實完成有好一陣子了,這是搭配我的一個 SaaS 系統開發的網站,之後還會再持續開發新的功能。 不過這個官網相對比較單純就是了,設計也都是給 AI 完成的,這個年代用 AI 開發網站真的是太方便了。

jquery 網頁黑白效果

black-white

今天因為看到有人在討論中國大陸網站為了弔念川震死傷的人,很多網站都變成黑白,才知道有這麼一個方便的jquery plugin可以直接把頁面變成黑白的。

Plugin下載
jQuery.BlackAndWhite

引入plugin後直接照範例使用就好了。
  1. $(window).load(function(){   
  2.     $('.bwWrapper').BlackAndWhite({   
  3.         hoverEffect : true// default true   
  4.         // set the path to BnWWorker.js for a superfast implementation   
  5.         webworkerPath : false,   
  6.         // for the images with a fluid width and height    
  7.         responsive:true,   
  8.         // to invert the hover effect   
  9.         invertHoverEffect: false,   
  10.         speed: { //this property could also be just speed: value for both fadeIn and fadeOut   
  11.             fadeIn: 200, // 200ms for fadeIn animations   
  12.             fadeOut: 800 // 800ms for fadeOut animations   
  13.         }   
  14.     });   
  15. });  

注意他的寫法,要使用的元素要把position設為relative
  1. .bwWrapper {   
  2.     position:relative;   
  3.     display:block;   
  4. }  

Demo

留言

熱門文章