Ik probeer om floatbox te installeren op een site. Ik krijg helaas de pijltjes in de onderste zwarte balk zoals jehier kunt zien.
Kijk maar op mijn site.
Hier is mijn floatbox.js:
Code: Select all
/***************************************************************************
* Floatbox v3.53.0
* July 27, 2009
*
* Copyright (c) 2008-2009 Byron McGregor
* Website: http://randomous.com/floatbox
* License: Attribution-Noncommercial-No Derivative Works 3.0 Unported
* http://creativecommons.org/licenses/by-nc-nd/3.0/
* Use on any commercial site requires purchase and registration.
* See http://randomous.com/floatbox/license for details.
* This comment block must be retained in all deployments and distributions.
***************************************************************************/
function Floatbox() {
this.defaultOptions = {
/***** BEGIN OPTIONS CONFIGURATION *****/
// See docs/options.html for detailed descriptions.
// All options can be overridden with rev/data-fb-options tag or page options (see
docs/instructions.html).
/*** <General Options> ***/
licenseKey: '' ,// you can paste your license key here instead of in
licenseKey.js if you want
padding: 24 ,// pixels
panelPadding: 8 ,// pixels
overlayOpacity: 55 ,// 0-100
shadowType: 'drop' ,// 'drop'|'halo'|'none'
shadowSize: 12 ,// 8|12|16|24
roundCorners: 'all' ,// 'all'|'top'|'none'
cornerRadius: 12 ,// 8|12|20
roundBorder: 1 ,// 0|1
outerBorder: 4 ,// pixels
innerBorder: 1 ,// pixels
autoFitImages: true ,// true|false
resizeImages: true ,// true|false
autoFitOther: false ,// true|false
resizeOther: false ,// true|false
resizeTool: 'cursor' ,// 'cursor'|'topleft'|'both'
infoPos: 'bl' ,// 'tl'|'tc'|'tr'|'bl'|'bc'|'br'
controlPos: 'br' ,// 'tl'|'tr'|'bl'|'br'
centerNav: false ,// true|false
colorImages: 'black' ,// 'black'|'white'|'blue'|'yellow'|'red'|'custom'
colorHTML: 'white' ,// 'black'|'white'|'blue'|'yellow'|'red'|'custom'
colorVideo: 'blue' ,// 'black'|'white'|'blue'|'yellow'|'red'|'custom'
boxLeft: 'auto' ,// 'auto'|pixels|'[-]xx%'
boxTop: 'auto' ,// 'auto'|pixels|'[-]xx%'
enableDragMove: false ,// true|false
stickyDragMove: true ,// true|false
enableDragResize: false ,// true|false
stickyDragResize: true ,// true|false
draggerLocation: 'frame' ,// 'frame'|'content'
minContentWidth: 140 ,// pixels
minContentHeight: 100 ,// pixels
centerOnResize: true ,// true|false
showCaption: true ,// true|false
showItemNumber: true ,// true|false
showClose: true ,// true|false
cacheAjaxContent: false ,// true|false
hideObjects: true ,// true|false
hideJava: true ,// true|false
disableScroll: false ,// true|false
randomOrder: false ,// true|false
preloadAll: true ,// true|false
autoGallery: false ,// true|false
autoTitle: '' ,// common caption string to use with autoGallery
printCSS: '' ,// path to css file or inline css string to apply to print
pages (see showPrint)
language: 'nl' ,// 'auto'|'en'|... (see the languages folder)
graphicsType: 'auto' ,// 'auto'|'international'|'english'
/*** </General Options> ***/
/*** <Animation Options> ***/
doAnimations: true ,// true|false
resizeDuration: 3.5 ,// 0-10
imageFadeDuration: 3 ,// 0-10
overlayFadeDuration: 4 ,// 0-10
startAtClick: true ,// true|false
zoomImageStart: true ,// true|false
liveImageResize: true ,// true|false
splitResize: 'no' ,// 'no'|'auto'|'wh'|'hw'
cycleInterval: 5 ,// seconds
cycleFadeDuration: 4.5 ,// 0-10
/*** </Animation Options> ***/
/*** <Navigation Options> ***/
navType: 'both' ,// 'overlay'|'button'|'both'|'none'
navOverlayWidth: 35 ,// 0-50
navOverlayPos: 30 ,// 0-100
showNavOverlay: 'never' ,// 'always'|'once'|'never'
showHints: 'once' ,// 'always'|'once'|'never'
enableWrap: true ,// true|false
enableKeyboardNav: true ,// true|false
outsideClickCloses: true ,// true|false
imageClickCloses: true ,// true|false
numIndexLinks: 0 ,// number, -1 = no limit
indexLinksPanel: 'control' ,// 'info'|'control'
showIndexThumbs: true ,// true|false
/*** </Navigation Options> ***/
/*** <Slideshow Options> ***/
doSlideshow: true ,// true|false
slideInterval: 4.5 ,// seconds
endTask: 'exit' ,// 'stop'|'exit'|'loop'
showPlayPause: true ,// true|false
startPaused: false ,// true|false
pauseOnPrev: true ,// true|false
pauseOnNext: false ,// true|false
pauseOnResize: true // true|false
/*** </Slideshow Options> ***/
};
/*** <New Child Window Options> ***/
// Will inherit from the primary floatbox options unless overridden here.
// Add any you like.
this.childOptions = {
padding: 16,
overlayOpacity: 45,
resizeDuration: 3,
imageFadeDuration: 3,
overlayFadeDuration: 0
};
/*** </New Child Window Options> ***/
/*** <Custom Paths> ***/
// Normally leave these blank.
// Floatbox will auto-find folders based on the location of floatbox.js and background
-images.
// If you have a custom odd-ball configuration, fill in the details here.
// (Trailing slashes please)
this.customPaths = {
installBase: '' ,// default: parsed from floatbox.js, framebox.js or
floatbox.css include line
jsModules: '' ,// default: installBase/modules/
cssModules: '' ,// default: installBase/modules/
languages: '' ,// default: installBase/languages/
graphics: '' // default: from floatbox.css pathChecker background-image
};
/*** </Custom Paths> ***/
Wie weet de oplossing voor de pijltjes?
Groetjes Nuc