A ver si alguien me puede echar una mano. Soy analfabeto en Perl...
Me he hecho cargo de una web escrita en Perl, de la cual quiero modificar la portada, pero cual es mi sorpresa que la parte en HTML no es exactamente HTML, etc...
El caso es que quiero incluir un slideshow en CSS para que vayan pasando de forma dinámica una serie de imágenes, y lleva un pequeño código en Javascript típico que va antes del <body> y que controla el tiempo de paso de cada imagen, etc...
Pero no sé en dónde incluirlo.
Tengo un archivo para portada, que se llama portada.inc.
Otro que se llama javascript_html.inc que es donde hace referencia a la ubicación de las librerías Javascript, tipo
Using html4strict Syntax Highlighting
<SCRIPT LANGUAGE="JavaScript1.1" SRC="/javascript//jquery.slider.js" TYPE="text/javascript"></SCRIPT>
Coloreado en 0.002 segundos, usando GeSHi 1.0.8.4
En HTML normal meto el código siguiente
Using javascript Syntax Highlighting
- <script type="text/javascript">
- function formatText(index, panel) {
- return index + "";
- }
- $(function () {
- $('.anythingSlider').anythingSlider({
- easing: "easeInOutExpo", // Anything other than "linear" or "swing" requires the easing plugin
- autoPlay: true, // This turns off the entire FUNCTIONALY, not just if it starts running or not.
- delay: 3000, // How long between slide transitions in AutoPlay mode
- startStopped: false, // If autoPlay is on, this can force it to start stopped
- animationTime: 600, // How long the slide transition takes
- hashTags: true, // Should links change the hashtag in the URL?
- buildNavigation: true, // If true, builds and list of anchor links to link to each slide
- pauseOnHover: true, // If true, and autoPlay is enabled, the show will pause on hover
- startText: "Go", // Start text
- stopText: "Stop", // Stop text
- navigationFormatter: formatText // Details at the top of the file on this use (advanced use)
- });
- $("#slide-jump").click(function(){
- $('.anythingSlider').anythingSlider(6);
- });
- });
- </script>
Coloreado en 0.002 segundos, usando GeSHi 1.0.8.4
y me funciona sin problemas, pero aquí no sé dónde ubicarlo: si en portada.inc (aquí tengo que meter el html de la galería y sí que me lo coge), que cuando lo pongo la web me aparece en blanco, o en javascript_html.inc, que no me realiza ningún cambio.
¿Sugerencias?
Gracias de antemano.