That was such a tremendous help. I could see that my files did not have the "...?v=1.0.5" version extensions. When those were deleted in the doc links, the Button Helpers displayed online for http://www.josephdenaro.com/comps/indexFBmorgan.html (which I reversed-engineered) and http://www.josephdenaro.com/comps/indexFB.html
The one re-size button (in middle) indicates it is disabled. Is the following were this would be controlled for indexFBmorgan.html (using <!-- Add Button helper (this is optional) -->
<link rel="stylesheet" type="text/css" href="../fancyBoxAps-v2/source/helpers/jquery.fancybox-buttons.css" /><script type="text/javascript" src="../fancyBoxAps-v2/source/helpers/jquery.fancybox-buttons.js"></script> ? in jquery.fancybox-buttons.js
Code:
(function ($) {
//Shortcut for fancyBox object
var F = $.fancybox;
//Add helper object
F.helpers.buttons = {
tpl: '<div id="fancybox-buttons"><ul><li><a class="btnPrev" title="Previous" href="javascript:;"></a></li><li><a class="btnPlay" title="Start slideshow" href="javascript:;"></a></li><li><a class="btnNext" title="Next" href="javascript:;"></a></li><li><a class="btnToggle" title="Toggle size" href="javascript:;"></a></li><li><a class="btnClose" title="Close" href="javascript:jQuery.fancybox.close();"></a></li></ul></div>',
list: null,
buttons: {},
update: function () {
var toggle = this.buttons.toggle.removeClass('btnDisabled btnToggleOn');
//Size toggle button
if (F.current.canShrink) {
toggle.addClass('btnToggleOn');
} else if (!F.current.canExpand) {
toggle.addClass('btnDisabled');
}
},
I imagine making the images in slideshow display a bit larger would be a CSS property, but where would that would be?
Bookmarks