jquery全屏模式插件

发布时间:2020-10-13 21:12:05 作者:magicsa
来源:网络 阅读:5926

项目地址:https://github.com/martinaglv/jQuery-FullScreen


How to use

Include jquery.fullscreen.js in your page along with version 1.7 of the jQuery library. This gives you the$('#elem').fullScreen() method. You can optionally pass an object with properties:

PropertyValueMeaning
backgrounda color hashThis is the color that will be used for the background.
callbacka functionThe callback function will be called on a full screen change event. It has one argument - a boolean indicating whether we are in full screen or not.
fullscreenClassa stringThis is the CSS class that will be added to elements in fullscreen mode. The default class is "fullScreen".

After the plugin makes your element full screen, it will add the fullScreen class on it (unless overridden with the fullscreenClass parameter), so you can easily style it.

Example

// The plugin sets the $.support.fullscreen flag:if($.support.fullscreen){// ...// Show your full screen button here// ...$('#fullScreen').click(function(e){$('#content').fullScreen();// You can also pass a hash with properties:// $('#content').fullScreen({//  'background'    : '#111',//  'callback'      : function(isFullScreen){//      // ...//      // Do some cleaning up here//      // ...//  }// });});}

You can then apply additional styles to your element. Take the opportunity to increase the font size, hide distractions and make for a better reading experience.

#content.fullScreen{/* Give the element a width and margin:0 auto; to center it. */}

If you later wish to cancel the full screen view, you can do so by calling the fullScreen() method again.


附件:http://down.51cto.com/data/2363379
推荐阅读:
  1. 制作一个超简单的全屏插件(基于JQuery)
  2. JQUERY背景图全屏按比例缩放插件 JQUERY-BACKSTRETCH

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

fullscreen ue j

上一篇:微信小程序实现展示评分结果功能

下一篇:Js面试算法详解

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》