angularjs html5,GitHub - fabiobiondi/angular-fullscreen: AngularJS HTML5 Fullscreen

This repo is not maintaned anymore

AngularJS HTML5 Fullscreen

An AngularJS service and a directive to quickly use the HTML5 fullscreen API and set the fullscreen to the document or to a specific element.

Example

Usage

Add AngularJS and the angular-fullscreen.js to your main file (index.html)

Set FBAngular as a dependency in your module:

var app = angular.module('YourApp', ['FBAngular'])

Fullscreen Directive

Set the fullscreen attribute to a specific element:

P1030188.JPG

The only requirement is to set a different ID to all elements that you will flag as fullscreen.

Fullscreen Service

You can also use the Fullscreen service into your controller:

Controller:

function MainCtrl($scope, Fullscreen) {

$scope.goFullscreen = function () {

if (Fullscreen.isEnabled())

Fullscreen.cancel();

else

Fullscreen.all();

// Set Fullscreen to a specific element (bad practice)

// Fullscreen.enable( document.getElementById('img') )

}

}

HTML:

Enable/Disable fullscreen

Alternative Approach

You may pass in the name of a scope property to watch. When the property

becomes truthy, the element will become full screen:

Controller:

function MainCtrl($scope) {

// Initially, do not go into full screen

$scope.isFullscreen = false;

$scope.toggleFullScreen = function() {

$scope.isFullscreen = !$scope.isFullscreen;

}

}

HTML:

Lorem ipsum...

Toggle Full Screen

If you want to disable the click fullscreen trigger for this alternative approach, add the attribute only-watched-property to the fullscreen directive, like this:

Lorem ipsum...

In this case, only a change of the property will trigger the fullscreen.

Available Methods

Method

Details

all()

enable document fullscreen

toggleAll()

enable or disable the document fullscreen

enable(elementID)

enable fullscreen to a specific element

cancel()

disable fullscreen

isEnabled()

return true if fullscreen is enabled, otherwise false

isSupported()

return true if fullscreen API is supported by your browser

Available Events

Event

Arguments

Details

FBFullscreen.change

isEnabled

fired when fullscreen state change

Example

License

The MIT License

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值