preguntas varias

22/05/2004 - 13:46 por Esteve Valentí | Informe spam
Hola a todos.

Quiero hacer una web de rutas de senderismo y la voy a hacer
con FrontPage XP (no se cómo hacerla con dreamweaver i con
FP me será más fácil aprenderlo) y tengo algunas dudas:

1-¿Cómo puedo hacer un menú horizontal con opciones anidadas?
Como un menú clásico de un programa de windows pero en la
página web.

2-¿Como puedo pegar varias fotos de una vista del horizonte para
que la vista sea más ancha? No 360º... simplemente 2 o 3 fotos.
Vista estrecha verticalmente y ancha horizontalmente.

3-¿Que programa me recomendais para crear una galeria de fotos
en miniatura en una tabla que se amplien al pulsar sobre ellas? Se
hacerlo con el ACDSee, pero igual sabeis otro mejor...


Muchas gracias!!!


Adéu

-
Esteve Valentí
evalenti@ya.com
http://es.geocities.com/puigdelescols

Preguntas similare

Leer las respuestas

#1 Miguel Angel Da Vila
22/05/2004 - 18:02 | Informe spam
Sobre el menú, puedo decirte que existen varias versiones disponibles en la
web, de distribución gratuita y que sólo tienes que montar en tu sitio
siguiendo las instrucciones de su creador. Generalmente este tipo de menú es
muy laborioso y lleva mucha programación en JavaScript. Procura que sea
compatible con el mayor número de navegadores y que de preferencia cuente
con una versión para DOM.

Seguramente en la sección de Javascript en www.hotscripts.com encontrarás
muchos de éstos y podrás escoger el que más te agrade. Puedo sugerirte dos:

http://www.brothercake.com/

www.dhtmlcentral.com


También en hotscripts o en javascript.com encontrarás galerías de fotos, la
mayoría requiere soporte (backend) con algún lenguaje de servidor y una base
de datos. Pero también las hay basadas sólo en Javascript, te pongo aquí el
código completo de una página que hace eso:

<!--Source Image listbox -->

<!--Contributer ScriptBreaker -->
<!--Contributer url http://www24.brinkster.com/scriptbr....htm-->
<!--Email: -->

<html>
<style>
.table
{
border:2px groove blue;
width:240; // here you can change the width of the rect around the script
}
</style>
<head>
<title>Image Listbox</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<form name=list>
<center>
<table class="table">
<tr><td>

<script language="Javascript">
var Image_array = new Array();
//new Array("Image location",width,height,"discription image")
Image_array[0] = new Array("houseproud_P.jpg",100,90,"House Proud");
Image_array[1] = new Array("pariscallingP.jpg",100,90,"Paris calling");
Image_array[2] = new Array("frenchsessionsP.jpg",100,90,"French Session");
Image_array[3] = new Array("coverfullonP.jpg",100,90,"Full on");
//If you want to add more images use Image_array[4]= ...

var selected = 0;

function setf(thisv)
{
img_changer.src = Image_array[thisv][0];
img_changer.style.width = Image_array[thisv][1];
img_changer.style.height = Image_array[thisv][2];
selected = thisv + 1;
settext();
}

function settext()
{
text = selected + " of " + Image_array.length;
document.frm_buttons.index.value = text;
}

function startf()
{
document.list.image_list.options[0].selected = true;
setf(0);
}

function endf()
{
document.list.image_list.options[Image_array.length - 1].selected = true;
setf(Image_array.length - 1);
}

function next()
{
if (selected < Image_array.length)
{
document.list.image_list.options[selected ].selected = true;
setf(selected);
}
}

function prev()
{
if (selected > 1)
{
document.list.image_list.options[selected -2].selected = true;
setf(selected - 2);
}
}
</script>

<center>

<select onchange="setf(this.selectedIndex)" name=image_list>
<script language=javascript>
for(i=0;i<Image_array.length;i++)
{
document.write("<option>" + Image_array[i][3]);
}
</script>
</select>

</form>

<img name=img_changer style="border:1px groove gray">
<form name=frm_buttons>
<table border=0>
<tr>
<td align=right width`>
<input type=button value="|<<" style="font-size:10" onclick="startf()">
</td><td>
<input type=button value="<<" style="font-size:10" onclick="prev()">
</td><td>
<input type=button value=">>" style="font-size:10" onclick="next()">
</td><td>
<input type=button value=">>|" style="font-size:10" onclick="endf()">
</td><td>
<input type=text name=index
style="font-size:10;border:0;color:red;width:55;text-align:right">
</td>
</tr>
</table>
</center>

<script language=javascript>
setf(0);
</script>
</td></tr>
</table>
</form>
</center>
</body>
</html>
<!-- end Source -->






Un saludo


"Esteve Valentí" escribió en el mensaje
news:O0Hc5J$
Mostrar la cita
#2 Esteve Valentí
22/05/2004 - 20:17 | Informe spam
Hola Miguel Angel.

El menú de brothercake está muy bien... ¿ pero no existe
un programa (en vb6 se puede i en access más o menos)
que visualmente puedas crear el menú y que automaticamente
te cree el código fuente ?

Si no hay que ir buscando y cambiando el código a mano... no?

Adéu

-
Esteve Valentí

http://es.geocities.com/puigdelescols
"Miguel Angel Da Vila" escribió en el
mensaje news:
Mostrar la cita
la
Mostrar la cita
es
Mostrar la cita
dos:
Mostrar la cita
la
Mostrar la cita
base
Mostrar la cita
el
Mostrar la cita
script
Mostrar la cita
#3 Miguel Angel Da Vila
23/05/2004 - 05:19 | Informe spam
Entonces debes ir a hotscripts.com y buscar un menú que tenga el respaldo
para generarlo dinámicamente con ASP y Access. Si eres bueno en VB, puedes
usar el menú de Brothercake y hacer que VB escriba el archivo de
configuración del propio menú, creo que se llama "setup.js" con información
de la base de datos.

Pero seguramente a alguien ya se le ocurrió la idea antes, por eso te
sugiero ir a hotscripts, te servirá inclussive de guía ver el trabajo de
otra persona aún cuando quieras programarlo tu mismo.

Saludos

"Esteve Valentí" escribió en el mensaje
news:
Mostrar la cita
menú
Mostrar la cita
cuente
Mostrar la cita
encontrarás
Mostrar la cita
Session");
Mostrar la cita
Ads by Google
Search Busqueda sugerida