• Stars
    star
    214
  • Rank 180,880 (Top 4 %)
  • Language
  • Created over 10 years ago
  • Updated about 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

Live demo: http://www.fabiobiondi.com/demo/github/angular-fullscreen/demo/

Usage

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

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular.min.js"></script>
<script src="angular-fullscreen.js"></script>

Set FBAngular as a dependency in your module:

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

Fullscreen Directive

Set the fullscreen attribute to a specific element:

<img id="img1" src="imgs/P1030188.JPG" fullscreen />

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:

<button ng-click="goFullscreen()">Enable/Disable fullscreen</button>

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:

<div fullscreen="isFullscreen">Lorem ipsum...</div>
<button ng-click="toggleFullScreen()">Toggle Full Screen</button>

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:

<div fullscreen="isFullscreen" only-watched-property>Lorem ipsum...</div>

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

You can check out this live example here: http://www.fabiobiondi.com/demo/github/angular-fullscreen/demo/

License

The MIT License

Copyright (c) 2014 Fabio Biondi & Matteo Ronchi

More Repositories

1

talk-angular-rxjs-real-usecases

Source Code - RxJS: real world scenarios for Angular - Conference: CodeGen 2021
TypeScript
15
star
2

training-arf

Demo
TypeScript
11
star
3

angular-tweenmax-draggable-knob

AngularJS directive to use the Tweenmax Draggable Plugin (type: rotation)
JavaScript
10
star
4

ngrx-demo-expenses

An NGRX 8 simple demo
TypeScript
8
star
5

react-node-uploader-demo

JavaScript
6
star
6

chat-and-learn-angularjs-codelab

"ChatAndLearn" source code about AngularJS
HTML
6
star
7

typescript-playground

A simple Typescript Playground
JavaScript
5
star
8

live-coding-angular-mastering-components

Source code of my talk "Mastering Angular Components": how to create custom components for UIKIT. Demo: https://fabiobiondi.github.io/live-coding-angular-mastering-components/
TypeScript
5
star
9

astro-workshop

Astro
4
star
10

react-demo-forteam

JavaScript
2
star
11

talk-angular-ng-modules-demo

Source code of my talk "Angular ngModules"
TypeScript
2
star
12

live-coding-angular-best-practices

Source code of my talk Angular Best Practices: component-based approach, modules (core, features, shared), lazy loading, change detection strategy onPush
TypeScript
2
star
13

talk-ngrx-for-beginners

TypeScript
1
star
14

react-next-landing-hello-world

JavaScript
1
star
15

react-demo-animated-hamburger

Source code of my React / Typescript Free training course - live #2
TypeScript
1
star
16

react-test-ui-components

This boilerplate is a starting point to test most of the features and DOM behaviors of a React component.
JavaScript
1
star
17

react18-workshop-testing-shop

TypeScript
1
star