Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<button onclick="top.jQuery.facebox({image: 'bild.gif'}); return false;">show</button>
Quaese hat gesagt.:...
Im iFrame-Dokument rufst du die Methode facebox aus dem Hauptdokument auf.
...
Hi wie meinst du das mit der faxebox Methode im iFrame us dem Hauptdokument aufrufen?
<html>
<head>
<script src="jquery.js" type="text/javascript"></script>
<script src="facebox.js" type="text/javascript"></script>
<link href="facebox.css" media="screen" rel="stylesheet" type="text/css">
</head>
<body>
<iframe src="iframe_doc.html"></iframe>
</body>
</html>
<html>
<body>
<form>
<button onclick="top.jQuery.facebox({image: 'bild.gif'}); return false;">show</button>
</form>
</body>
</html>
Code:* Usage: * ... * You can also use it programmatically: * * jQuery.facebox('some html') * * The above will open a facebox with "some html" as the content. * * jQuery.facebox(function($) { * $.get('blah.html', function(data) { $.facebox(data) }) * }) * * The above will show a loading screen before the passed function is called, * allowing for a better ajaxy experience. * * The facebox function can also display an ajax page or image: * * jQuery.facebox({ ajax: 'remote.html' }) * jQuery.facebox({ image: 'dude.jpg' }) *