pmcruz8 / angular-photosphere-directive

An AngularJS directive to display photospheres in websites

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Photosphere directive for Angular.js

##Getting started :

Import Angular, three.js and photosphere.min.js

<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.5/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/threejs/r67/three.min.js"></script>
<script src="libs/photosphere.min.js"></script>

Add the 'photosphere' module to your app

angular.module('myApp', ['photosphere']);

##Use :

<photosphere src="path/img.jpg"></photosphere>

##Compatibility : Tested on Chrome 37, Firefox 35, IE 11

##Optionnal attributes :

    <photosphere src="path/img.jpg"
                 width="1024"               // Default is 640
                 height="768"               // Default is 480
                 speed="10"                 // Initial rotation speed. Default is 0. Has to be between 0 and 20
                 resolution="40"            // Number of division of the sphere on which is mapped the picture. Default is 30. Has to be between 10 and 80.
                 controls="all">            // Can be 'all', 'wheel', 'pointer' or 'none'. Default is 'all'
    </photosphere>

##Advices

  • You can now put several photospheres on the same webpage !
  • Working on smartphones/tablets
  • Big resolutions values can have effects on the performances.
  • Don't use too heavy pictures (like 10 Mo), people don't like to wait...

##Coming Soon

  • Async load of the pictures
  • Headtracking control (with webcam)
  • LeapMotion control
  • Better reaction to resize
  • Setting the fov of the camera
  • Fisheye view

##License

MIT License

About

An AngularJS directive to display photospheres in websites

License:MIT License


Languages

Language:JavaScript 66.8%Language:ApacheConf 24.9%Language:HTML 6.8%Language:CSS 1.5%