This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{Infobox Software | |
| Name = <!-- Nur falls abweichend vom Artikelnamen --> | |
| Logo = <!-- Logo --> | |
| Screenshot = <!-- Bildschirmfoto --> | |
| Beschreibung = <!-- Beschreibung des Bildschirmfotos --> | |
| Hersteller = Richard Burkhardt, [http://www.konsultaner.de Konsultaner GmbH & Co. KG], Software-Unternehmen | |
| Erscheinungsjahr = 2015 | |
| AktuelleVersion = 0.0.3 | |
| AktuelleVersionFreigabeDatum = 23. März 2015 | |
| AktuelleVorabVersion = <!-- --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var colorize = { | |
blendColorValue : function (color1,color2,method){ | |
if(typeof color1 == 'undefined'){ | |
color1 = 0; | |
} | |
if(typeof color2 == 'undefined'){ | |
color2 = 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Directive for jsMovie */ | |
/* USAGE: <div jsmovie='' play-on-load='true' folder='img/seq/' sequence='mySeq####.png' from='1' to='32'></div> */ | |
module.directive('jsmovie',function(){ | |
return { | |
restrict:"A", | |
link:function(scope,element,attrs){ | |
var possibleSettings = [ | |
{name:'images', type:'array'}, | |
{name:'clipQueue', type:'array'}, | |
{name:'grid', type:'object'}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.movie').jsMovie({ | |
images : ['loader_ani4x4.png'], | |
folder : 'pic/loader/', | |
height : 40, width: 40, | |
grid : {height:40, width:40, columns:4, rows:4}, | |
showPreLoader : false, | |
playOnLoad : false, | |
playBackwards : false, | |
repeat: true, | |
fps:6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.movie').jsMovie({ | |
images : ['loader_ani4x4.png'], | |
folder : 'pic/loader/', | |
height : 40, width: 40, | |
grid : {height:40, width:40, columns:4, rows:4}, | |
showPreLoader : false, | |
playOnLoad : true | |
}); |