日期:2012/02/06 來源:GBin1.comhtml
今天介紹一款幫助網站提升用戶體驗的jQuery插件 - jQuery fullscreen,它可以幫助網站實現針對閱讀內容的全屏顯示功能。web
這個插件基於Full Screen API.,目前有半數的瀏覽器支持這個API。瀏覽器
jQuery(document).ready(function($){ if($.support.fullscreen){ $('#fullscreen').click(function(e){ $('#content').fullScreen(); e.preventDefault(); }); } });