jquery 網頁黑白效果
今天因為看到有人在討論中國大陸網站為了弔念川震死傷的人,很多網站都變成黑白,才知道有這麼一個方便的jquery plugin可以直接把頁面變成黑白的。
Plugin下載
jQuery.BlackAndWhite
引入plugin後直接照範例使用就好了。
- $(window).load(function(){
- $('.bwWrapper').BlackAndWhite({
- hoverEffect : true, // default true
- // set the path to BnWWorker.js for a superfast implementation
- webworkerPath : false,
- // for the images with a fluid width and height
- responsive:true,
- // to invert the hover effect
- invertHoverEffect: false,
- speed: { //this property could also be just speed: value for both fadeIn and fadeOut
- fadeIn: 200, // 200ms for fadeIn animations
- fadeOut: 800 // 800ms for fadeOut animations
- }
- });
- });
注意他的寫法,要使用的元素要把position設為relative
- .bwWrapper {
- position:relative;
- display:block;
- }
Demo
留言