non riesco a ottenere lo stesso effetto riportato qui: http://dropthebit.com/demos/photobox/
ovvero non parte lo slide scorrevole ma mi carica solo un immagine
non riesco a ottenere lo stesso effetto riportato qui: http://dropthebit.com/demos/photobox/
ovvero non parte lo slide scorrevole ma mi carica solo un immagine
Ricontrolla tutto passo passo, spesso è un problema di percorsi sbagliati
Cavicchi Andrea
Problemi con javascript, jquery, ajax clicca qui
<!DOCTYPE HTML>
<!--
/*
* Photobox
*
* Copyright 2012, Yair Even Or
* https://dropthebit.com
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/MIT
*/
-->
<html lang="en">
<head>
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><![endif]-->
<meta charset="utf-8">
<title>Photobox - CSS3 image gallery modal viewer</title>
<meta name="description" content="A lightweight CSS3 image gallery that is pretty to look and and easy to use">
<meta name="viewport" content="width=device-width">
<link rel="shortcut icon" href="favicon.ico"/>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="photobox/photobox.css">
<!--[if lt IE 9]><link rel="stylesheet" href="photobox/photobox.ie.css"><![endif]-->
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src='photobox/jquery.photobox.js'></script>
</head>
<body>
<div id='wrap'>
<ul id='gallery'>
<li class="loaded">
<a href="images/01.jpg">
<img src="images/01.jpg" alt="photo1 title">
</a>
</li>
<li class="loaded">
<a href="images/02.jpg">
<img src="images/02.jpg" alt="photo2 title">
</a>
</li>
<li class="loaded">
<a href="images/03.jpg">
<img src="images/03.jpg" alt="photo3 title">
</a>
</li>
<li class="loaded">
<a href="images/04.jpg">
<img src="images/04.jpg" alt="photo4 title">
</a>
</li>
<li class="loaded">
<a href="images/05.jpg">
<img src="images/05.jpg" alt="photo5 title">
</a>
</li>
<li class="video loaded">
<a href="http://www.youtube.com/embed/W3OQgh_h4U4" rel="video">
<img src="http://img.youtube.com/vi/W3OQgh_h4U4/0.jpg" title="PEOPLE ARE AWESOME 2013 FULL HD ">
</a>
</li>
</ul>
<script type='text/javascript'>
$('#gallery').photobox('a', {time: 0});
</script>
</body>
</html>