F
foobar
Hi Leute,
ich will php variablen an das Lightbox js schicken um die config zu ändern.
Eingebunden wird Lightbox in der html über:
<script type="text/javascript" src="typo3conf/ext/fx_galerie/res/lightbox/js/lightbox.js"></script>
Werden die zu übertragenen Variablen als GET parameter angegeben? also so:
src="typo3conf/ext/fx_galerie/res/lightbox/js/lightbox.js?resizespeed=1&overlayOpacity=0.5"
Wenn ja, wie fange ich diesen Parameter in der Lightbox Js Datei ab?
Lightbox.js:
ich will php variablen an das Lightbox js schicken um die config zu ändern.
Eingebunden wird Lightbox in der html über:
<script type="text/javascript" src="typo3conf/ext/fx_galerie/res/lightbox/js/lightbox.js"></script>
Werden die zu übertragenen Variablen als GET parameter angegeben? also so:
src="typo3conf/ext/fx_galerie/res/lightbox/js/lightbox.js?resizespeed=1&overlayOpacity=0.5"
Wenn ja, wie fange ich diesen Parameter in der Lightbox Js Datei ab?
Lightbox.js:
PHP:
//
// Configurationl
//
LightboxOptions = Object.extend({
fileLoadingImage: 'typo3conf/ext/fx_galerie/res/lightbox/images/loading.gif',
fileBottomNavCloseImage: 'typo3conf/ext/fx_galerie/res/lightbox/images/closelabel.gif',
overlayOpacity: 0.8, // controls transparency of shadow overlay
animate: true, // toggles resizing animations
resizeSpeed: 7, // controls the speed of the image resizing animations (1=slowest and 10=fastest)
borderSize: 10, //if you adjust the padding in the CSS, you will need to update this variable
// When grouping images this is used to write: Image # of #.
// Change it for non-english localization
labelImage: "Image",
labelOf: "of"
}, window.LightboxOptions || {});