Sdo. imagenes en Trellix Web
Estoy usando Trellix Web y pretendo introducir unas imagenes que vayan cambiando.
Creo que lo he intentado ya todo. No consigo ver las imágenes con el comando "Ver vista previa del sitio web..." ¿Es que no es posible?
¿Hay algún error en los siguientes códigos?
(Las imagenes las tengo en: C:Documents and SettingsUsuarioEscritorioWEB y se llaman gnral1,gnral2,gnral3)
<script language="JavaScript1.1">
//Picture Cube slideshow - By Tony Foster III
//Modifications by JK
//Visit JavaScript Kit (http://javascriptkit.com) for script
var specifyimage=new Array() //Your images
specifyimage[0]="web/gnral1.jpg"
specifyimage[1]="web/gnral2.jpg"
specifyimage[2]="web/gnral3.jpg"
var delay=3000 //3 seconds
//Counter for array
var count =1;
var cubeimage=new Array()
for (i=0;i<specifyimage.length;i++){
cubeimage[i]=new Image()
cubeimage[i].src=specifyimage[i]
}
function movecube(){
if (window.createPopup)
cube.filters[0].apply()
document.images.cube.src=cubeimage[count].src;
if (window.createPopup)
cube.filters[0].play()
count++;
if (count==cubeimage.length)
count=0;
setTimeout("movecube()",delay)
}
window.onload=new Function("setTimeout('movecube()',delay)")
</script>
<img src="gnral1.jpg" name="cube" border=0 style="filter:progid:DXImageTransform.Microsoft.Stretch(stretchStyle='PUSH')">
<p align="center"><font face="arial" size="-2">This free script provided by</font><br>
<font face="arial, helvetica" size="-2"><a href="http://javascriptkit.com">JavaScript
Kit</a></font></p>
Lo que hago es pegar este código utilizando el comando de TRellix: Insertar-Webs Gems-Build Your Own Gem.
¿Qué es lo que hago mal para no poder ver las imagenes? Aclaro que el sitio está guardado sólo en mi disco duro y no está publicado.
Creo que lo he intentado ya todo. No consigo ver las imágenes con el comando "Ver vista previa del sitio web..." ¿Es que no es posible?
¿Hay algún error en los siguientes códigos?
(Las imagenes las tengo en: C:Documents and SettingsUsuarioEscritorioWEB y se llaman gnral1,gnral2,gnral3)
<script language="JavaScript1.1">
//Picture Cube slideshow - By Tony Foster III
//Modifications by JK
//Visit JavaScript Kit (http://javascriptkit.com) for script
var specifyimage=new Array() //Your images
specifyimage[0]="web/gnral1.jpg"
specifyimage[1]="web/gnral2.jpg"
specifyimage[2]="web/gnral3.jpg"
var delay=3000 //3 seconds
//Counter for array
var count =1;
var cubeimage=new Array()
for (i=0;i<specifyimage.length;i++){
cubeimage[i]=new Image()
cubeimage[i].src=specifyimage[i]
}
function movecube(){
if (window.createPopup)
cube.filters[0].apply()
document.images.cube.src=cubeimage[count].src;
if (window.createPopup)
cube.filters[0].play()
count++;
if (count==cubeimage.length)
count=0;
setTimeout("movecube()",delay)
}
window.onload=new Function("setTimeout('movecube()',delay)")
</script>
<img src="gnral1.jpg" name="cube" border=0 style="filter:progid:DXImageTransform.Microsoft.Stretch(stretchStyle='PUSH')">
<p align="center"><font face="arial" size="-2">This free script provided by</font><br>
<font face="arial, helvetica" size="-2"><a href="http://javascriptkit.com">JavaScript
Kit</a></font></p>
Lo que hago es pegar este código utilizando el comando de TRellix: Insertar-Webs Gems-Build Your Own Gem.
¿Qué es lo que hago mal para no poder ver las imagenes? Aclaro que el sitio está guardado sólo en mi disco duro y no está publicado.