웹 버전 ppt 제작 플러그인 impress.js 원본 설명 번역
61039 단어 Web
원본 코드 자체에 많은 주석이 있어서 원본 코드를 배우는 지름길이다.
다만, 원본 코드의 주석은english입니다. 번역해 주시면 나중에 찾기에 편리합니다.
/**
* impress.js
*
* impress.js CSS3
* prezi.com.
*
*
* 2011-2012 Bartek Szopka (@bartaz)
*
* MIT GPL .
*
* ------------------------------------------------
* : Bartek Szopka
* : 0.5.3
* : http://bartaz.github.com/impress.js/
* : http://github.com/bartaz/impress.js/
*/
/*jshint bitwise:true, curly:true, eqeqeq:true, forin:true, latedef:true, newcap:true,
noarg:true, noempty:true, undef:true, strict:true, browser:true */
// impress ?
// impress ...
(function ( document, window ) {
'use strict';
//
// `pfx` CSS3 ,
// Modernizr http://www.modernizr.com/
var pfx = (function () {
var style = document.createElement('dummy').style,
prefixes = 'Webkit Moz O ms Khtml'.split(' '),
memory = {};
return function ( prop ) {
if ( typeof memory[ prop ] === "undefined" ) {
var ucProp = prop.charAt(0).toUpperCase() + prop.substr(1),
props = (prop + ' ' + prefixes.join(ucProp + ' ') + ucProp).split(' ');
memory[ prop ] = null;
for ( var i in props ) {
if ( style[ props[i] ] !== undefined ) {
memory[ prop ] = props[i];
break;
}
}
}
return memory[ prop ];
};
})();
// `arraify` ,
var arrayify = function ( a ) {
return [].slice.call( a );
};
// `css` :
// `props` `el` .
// `pfx` 。
var css = function ( el, props ) {
var key, pkey;
for ( key in props ) {
if ( props.hasOwnProperty(key) ) {
pkey = pfx(key);
if ( pkey !== null ) {
el.style[pkey] = props[key];
}
}
}
return el;
};
// `toNumber` , 。
// , 0( fallback )
var toNumber = function (numeric, fallback) {
return isNaN(numeric) ? (fallback || 0) : Number(numeric);
};
// `byId` id
var byId = function ( id ) {
return document.getElementById(id);
};
// `$` context( document) CSS
var $ = function ( selector, context ) {
context = context || document;
return context.querySelector(selector);
};
// `$$` context( document) CSS
var $$ = function ( selector, context ) {
context = context || document;
return arrayify( context.querySelectorAll(selector) );
};
// `triggerEvent` ,
// `eventName` , `detail` , el
var triggerEvent = function (el, eventName, detail) {
var event = document.createEvent("CustomEvent");
event.initCustomEvent(eventName, true, true, detail);
el.dispatchEvent(event);
};
// `translate`
var translate = function ( t ) {
return " translate3d(" + t.x + "px," + t.y + "px," + t.z + "px) ";
};
// `rotate`
// X Y Z , true
var rotate = function ( r, revert ) {
var rX = " rotateX(" + r.x + "deg) ",
rY = " rotateY(" + r.y + "deg) ",
rZ = " rotateZ(" + r.z + "deg) ";
return revert ? rZ+rY+rX : rX+rY+rZ;
};
// `scale`
var scale = function ( s ) {
return " scale(" + s + ") ";
};
// `perspective`
var perspective = function ( p ) {
return " perspective(" + p + "px) ";
};
// `getElementFromHash` window location hash id key
var getElementFromHash = function () {
// url “#” “#/” id
// "fallback" `#slide-id` "enhanced" `#/slide-id`
return byId( window.location.hash.replace(/^#\/?/,"") );
};
// `computeWindowScale` config
var computeWindowScale = function ( config ) {
var hScale = window.innerHeight / config.height,
wScale = window.innerWidth / config.width,
scale = hScale > wScale ? wScale : hScale;
if (config.maxScale && scale > config.maxScale) {
scale = config.maxScale;
}
if (config.minScale && scale < config.minScale) {
scale = config.minScale;
}
return scale;
};
//
var body = document.body;
var ua = navigator.userAgent.toLowerCase();
var impressSupported =
// CSS3D
( pfx("perspective") !== null ) &&
// classList dataset API
( body.classList ) &&
( body.dataset ) &&
// CSS 3D
( ua.search(/(iphone)|(ipod)|(android)/) === -1 );
if (!impressSupported) {
// classlist
body.className += " impress-not-supported ";
} else {
body.classList.remove("impress-not-supported");
body.classList.add("impress-supported");
}
//
// root impress
// 2 ,
var roots = {};
//
var defaults = {
width: 1024,
height: 768,
maxScale: 1,
minScale: 0,
perspective: 1000,
transitionDuration: 1000
};
// ( , ^_^)
var empty = function () { return false; };
// IMPRESS.JS API
//
// impress `impress`
// id( 'impress')
// impress 。
var impress = window.impress = function ( rootId ) {
// impress , ,
// , impress
if (!impressSupported) {
return {
init: empty,
goto: empty,
prev: empty,
next: empty
};
}
rootId = rootId || "impress";
// root , API ( ) -----by yczhu
if (roots["impress-root-" + rootId]) {
return roots["impress-root-" + rootId];
}
// step
var stepsData = {};
// step
var activeStep = null;
// ( , , )
var currentState = null;
// step
var steps = null;
//
var config = null;
//
var windowScale = null;
// root
var root = byId( rootId );
var canvas = document.createElement("div");
var initialized = false;
// step
//
// impress.js 2
// `impress:stepenter` step ( step )
// `impress:stepleave` step ( step )
// step
var lastEntered = null;
// `onStepEnter` step
// step step
var onStepEnter = function (step) {
if (lastEntered !== step) {
triggerEvent(step, "impress:stepenter");
lastEntered = step;
}
};
// `onStepLeave` step
// step step
// enter ,lastStep
var onStepLeave = function (step) {
if (lastEntered === step) {
triggerEvent(step, "impress:stepleave");
lastEntered = null;
}
};
// `initStep` data step ,
var initStep = function ( el, idx ) {
var data = el.dataset,
step = {
translate: {
x: toNumber(data.x),
y: toNumber(data.y),
z: toNumber(data.z)
},
rotate: {
x: toNumber(data.rotateX),
y: toNumber(data.rotateY),
z: toNumber(data.rotateZ || data.rotate)
},
scale: toNumber(data.scale, 1),
el: el
};
// id, step-N -----by yczhu
if ( !el.id ) {
el.id = "step-" + (idx + 1);
}
stepsData["impress-" + el.id] = step;
css(el, {
position: "absolute",
transform: "translate(-50%,-50%)" +
translate(step.translate) +
rotate(step.rotate) +
scale(step.scale),
transformStyle: "preserve-3d"
});
};
// `init` impress API impress
var init = function () {
// , ( ) -----by yczhu
if (initialized) { return; }
//
// ,ipad
var meta = $("meta[name='viewport']") || document.createElement("meta");
meta.content = "width=device-width, minimum-scale=1, maximum-scale=1, user-scalable=no";
if (meta.parentNode !== document.head) {
meta.name = 'viewport';
document.head.appendChild(meta);
}
//
var rootData = root.dataset;
config = {
width: toNumber( rootData.width, defaults.width ),
height: toNumber( rootData.height, defaults.height ),
maxScale: toNumber( rootData.maxScale, defaults.maxScale ),
minScale: toNumber( rootData.minScale, defaults.minScale ),
perspective: toNumber( rootData.perspective, defaults.perspective ),
transitionDuration: toNumber( rootData.transitionDuration, defaults.transitionDuration )
};
windowScale = computeWindowScale( config );
// step "canvas"
arrayify( root.childNodes ).forEach(function ( el ) {
canvas.appendChild( el );
});
root.appendChild(canvas);
//
document.documentElement.style.height = "100%";
css(body, {
height: "100%",
overflow: "hidden"
});
var rootStyles = {
position: "absolute",
transformOrigin: "top left",
transition: "all 0s ease-in-out",
transformStyle: "preserve-3d"
};
css(root, rootStyles);
css(root, {
top: "50%",
left: "50%",
transform: perspective( config.perspective/windowScale ) + scale( windowScale )
});
css(canvas, rootStyles);
body.classList.remove("impress-disabled");
body.classList.add("impress-enabled");
// steps
steps = $$(".step", root);
steps.forEach( initStep );
// canvas
currentState = {
translate: { x: 0, y: 0, z: 0 },
rotate: { x: 0, y: 0, z: 0 },
scale: 1
};
initialized = true;
triggerEvent(root, "impress:init", { api: roots[ "impress-root-" + rootId ] });
};
// `getStep` , step
// , "step-N"
// , id step
// DOM , “step” ( DOM )
var getStep = function ( step ) {
if (typeof step === "number") {
step = step < 0 ? steps[ steps.length + step] : steps[ step ];
} else if (typeof step === "string") {
step = byId(step);
}
return (step && step.id && stepsData["impress-" + step.id]) ? step : null;
};
// `impress:stepenter`
var stepEnterTimeout = null;
// `goto` API `el` ( ,id ) step ,
// `duration` .
var goto = function ( el, duration ) {
if ( !initialized || !(el = getStep(el)) ) {
// el step
return false;
}
// ,
// ,
// ( body overflow hidden )
//
// , : ,
// , !
window.scrollTo(0, 0);
var step = stepsData["impress-" + el.id];
if ( activeStep ) {
activeStep.classList.remove("active");
body.classList.remove("impress-on-" + activeStep.id);
}
el.classList.add("active");
body.classList.add("impress-on-" + el.id);
// step canvas
var target = {
rotate: {
x: -step.rotate.x,
y: -step.rotate.y,
z: -step.rotate.z
},
translate: {
x: -step.translate.x,
y: -step.translate.y,
z: -step.translate.z
},
scale: 1 / step.scale
};
//
//
//
// This information is used to alter the transition style:
// (zoomin) , ,
// (zoomout) , ,
var zoomin = target.scale >= currentState.scale;
duration = toNumber(duration, config.transitionDuration);
var delay = (duration / 2);
// step , ,
if (el === activeStep) {
windowScale = computeWindowScale(config);
}
var targetScale = target.scale * windowScale;
// step ( )
if (activeStep && activeStep !== el) {
onStepLeave(activeStep);
}
// , `root` `canvas`
//
// `root` `canvas` --
// `root` ,`canvas` .
// ( ),
//
css(root, {
//
// , 'scale'
transform: perspective( config.perspective / targetScale ) + scale( targetScale ),
transitionDuration: duration + "ms",
transitionDelay: (zoomin ? delay : 0) + "ms"
});
css(canvas, {
transform: rotate(target.rotate, true) + translate(target.translate),
transitionDuration: duration + "ms",
transitionDelay: (zoomin ? 0 : delay) + "ms"
});
// 。。
//
// , --- ,`root` `canvas`
// `impress:stepenter` , ,
// “ ” , , easy。
// , 。
if ( currentState.scale === target.scale ||
(currentState.rotate.x === target.rotate.x && currentState.rotate.y === target.rotate.y &&
currentState.rotate.z === target.rotate.z && currentState.translate.x === target.translate.x &&
currentState.translate.y === target.translate.y && currentState.translate.z === target.translate.z) ) {
delay = 0;
}
//
currentState = target;
activeStep = el;
// `impress:stepenter` .
//
//
// `transitionend`
// , 、 、 `transitionend`
// bug ( )
// ,
// , , “ ” `transitionend`
//
// `transitionend` , :
// http://github.com/bartaz/impress.js/blob/0.5.2/js/impress.js
window.clearTimeout(stepEnterTimeout);
stepEnterTimeout = window.setTimeout(function() {
onStepEnter(activeStep);
}, duration + delay);
return el;
};
// `prev` API step ( )
var prev = function () {
var prev = steps.indexOf( activeStep ) - 1;
prev = prev >= 0 ? steps[ prev ] : steps[ steps.length-1 ];
return goto(prev);
};
// `next` API step ( )
var next = function () {
var next = steps.indexOf( activeStep ) + 1;
next = next < steps.length ? steps[ next ] : steps[ 0 ];
return goto(next);
};
// step ( )
//
// steps `future` .
// step ,`future` , `present`
// step , `present` `past`
//
// , step :
// `future`, `present` `past`.
//
// CSS step .
// `present` step
root.addEventListener("impress:init", function(){
//step
steps.forEach(function (step) {
step.classList.add("future");
});
root.addEventListener("impress:stepenter", function (event) {
event.target.classList.remove("past");
event.target.classList.remove("future");
event.target.classList.add("present");
}, false);
root.addEventListener("impress:stepleave", function (event) {
event.target.classList.remove("present");
event.target.classList.add("past");
}, false);
}, false);
// hash .
root.addEventListener("impress:init", function(){
// lasthash
var lastHash = "";
// `#step-id` `#/step-id` hash
//
// hash , Chrome
// BUG: http://code.google.com/p/chromium/issues/detail?id=62820
root.addEventListener("impress:stepenter", function (event) {
window.location.hash = lastHash = "#/" + event.target.id;
}, false);
window.addEventListener("hashchange", function () {
// step ,location hash ( )
// hash change , step `goto` 。
// , hash .
if (window.location.hash !== lastHash) {
goto( getElementFromHash() );
}
}, false);
//
// url step , step
goto(getElementFromHash() || steps[0], 0);
}, false);
body.classList.add("impress-disabled");
// API impress.js
return (roots[ "impress-root-" + rootId ] = {
init: init,
goto: goto,
next: next,
prev: prev
});
};
// JS ,
impress.supported = impressSupported;
})(document, window);
//
// , impress
// : impres ,
//
// ,
(function ( document, window ) {
'use strict';
//
// throttling function calls, by Remy Sharp
// http://remysharp.com/2010/07/21/throttling-function-calls/
var throttle = function (fn, delay) {
var timer = null;
return function () {
var context = this, args = arguments;
clearTimeout(timer);
timer = setTimeout(function () {
fn.apply(context, args);
}, delay);
};
};
// impress
document.addEventListener("impress:init", function (event) {
// API
// , impress id
// `impress:init`
var api = event.detail.api;
//
//
document.addEventListener("keydown", function ( event ) {
if ( event.keyCode === 9 || ( event.keyCode >= 32 && event.keyCode <= 34 ) || (event.keyCode >= 37 && event.keyCode <= 40) ) {
event.preventDefault();
}
}, false);
// , impress ( )
// :
// [ ] -
// [ ] [ ] / [ ] [ ] -
// [ ] / [ ] - ,
// [tab ] - ,
//
// impress : step (0,0),
// ?
// ,[tab] ,
//
// , , [tab] step
// , , [shift+tab]
document.addEventListener("keyup", function ( event ) {
if ( event.keyCode === 9 || ( event.keyCode >= 32 && event.keyCode <= 34 ) || (event.keyCode >= 37 && event.keyCode <= 40) ) {
switch( event.keyCode ) {
case 33: //
case 37: //
case 38: //
api.prev();
break;
case 9: // tab
case 32: //
case 34: //
case 39: //
case 40: //
api.next();
break;
}
event.preventDefault();
}
}, false);
// steps
document.addEventListener("click", function ( event ) {
//
// ( )
var target = event.target;
while ( (target.tagName !== "A") &&
(target !== document.documentElement) ) {
target = target.parentNode;
}
if ( target.tagName === "A" ) {
var href = target.getAttribute("href");
// ,
if ( href && href[0] === '#' ) {
target = document.getElementById( href.slice(1) );
}
}
if ( api.goto(target) ) {
event.stopImmediatePropagation();
event.preventDefault();
}
}, false);
// steps
document.addEventListener("click", function ( event ) {
var target = event.target;
// step step
while ( !(target.classList.contains("step") && !target.classList.contains("active")) &&
(target !== document.documentElement) ) {
target = target.parentNode;
}
if ( api.goto(target) ) {
event.preventDefault();
}
}, false);
//
// @hakimel: https://github.com/hakimel/reveal.js
document.addEventListener("touchstart", function ( event ) {
if (event.touches.length === 1) {
var x = event.touches[0].clientX,
width = window.innerWidth * 0.3,
result = null;
if ( x < width ) {
result = api.prev();
} else if ( x > window.innerWidth - width ) {
result = api.next();
}
if (result) {
event.preventDefault();
}
}
}, false);
// ,
window.addEventListener("resize", throttle(function () {
// step
api.goto( document.querySelector(".step.active"), 500 );
}, 250), false);
}, false);
})(document, window);
// !
//
// .
// , !
//
// impress.js ,
// ,
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fortinet FortiWeb Web Application Firewall Policy BypassFrom: Geffrey Velasquez Date: Wed, 2 May 2012 20:33:23 -0500...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.