Versioner sammenlignet

Nøgle

  • Linjen blev tilføjet.
  • Denne linje blev fjernet.
  • Formatering blev ændret.
Wiki-markup
Confluence also uses Fancybox, *this can give issues*.

...

Name



|| Name | include-fancybox

...

Macro Body Processing

...

No macro body

...

Output format

...

HTML

...

Usage

 |
|| Macro Body Processing | No macro body |
|| Output format | HTML |
|| Usage | \{include-fancybox\}

...

 |

This should actualle be called "attach-fancybox" as is attaches the build in fancybox (bundled with Confluence in the Advanced Macros) to object with id "single_image"

...



I use it i conjunction with [me-image - Image lightbox with fancybox

...

Code

Kodeblok
]

Code 
{code}
<script type="text/javascript">
AJS.toInit(function () {
	jQuery('a#single_image').fancybox({
		'width'         : '80%',
		'height'        : '80%',
		'speedIn'		:	600,
		'speedOut'		:	200,
		'overlayShow'	:	false
	});
});
</script>
{code}

Alternate code that scales picture after

...

Kodeblok
 UserAgent, see more {here|http://davidwalsh.name/detect-ipad}

{code}
var isiPad = navigator.userAgent.match(/iPad/i) != null;

if (isiPad)
{
var vWidth='50%';
var vHeight='50%';
}
else
{
var vWidth='100%';
var vHeight='100%';
}
{code}