Búsqueda en el Foro:
Buscar


Autor Mensaje
Mensaje30-09-2010, 06:58 (UTC)    
Título del mensaje: ¿Como poner una imagen que aparezca 5 seg. y se quite?

¿Como poner una imagen que aparezca 5 seg. y se quite?

Quiero poner una imagen que se ponga durante un tiempo y se quite automaticamente... como lo puedo hacer?

Que no sea el intro!


Gracias!
______________
¿Quieres visitas y premios gratis?
¡Participa en nuestro Top-Ranking!

¿A que esperas? ¡Participa ya!
http://www.lsw-gratis.es.tl/Top_Ranking.htm

Un saludo!!
Mensaje01-10-2010, 08:41 (UTC)    
Título del mensaje:

REVIVO!
______________
¿Quieres visitas y premios gratis?
¡Participa en nuestro Top-Ranking!

¿A que esperas? ¡Participa ya!
http://www.lsw-gratis.es.tl/Top_Ranking.htm

Un saludo!!
Mensaje01-10-2010, 14:56 (UTC)    
Título del mensaje:

Hmmm algo como una imagen flotante en tu web


entra aqui haber si te sirve
http://www.paginawebgratis.es/forum/viewtopic.php?t=6044


Slu2
Mensaje01-10-2010, 16:53 (UTC)    
Título del mensaje:

mu0nline99b escribió:
Hmmm algo como una imagen flotante en tu web


entra aqui haber si te sirve
http://www.paginawebgratis.es/forum/viewtopic.php?t=6044


Slu2


No... que se ponga en el centro 5 segundos y desaparezca...
______________
¿Quieres visitas y premios gratis?
¡Participa en nuestro Top-Ranking!

¿A que esperas? ¡Participa ya!
http://www.lsw-gratis.es.tl/Top_Ranking.htm

Un saludo!!
Mensaje03-10-2010, 14:25 (UTC)    
Título del mensaje:

Tu te refieres, por ejemplo, a lo que tiene team-ayudamaster en su web (www.team-ayudamaster.es.tl). Encima de la página pone " Por favor espere, se esta cargando el sitio web."

Podrías preguntarle a él, a ver si te lo dice, ¿no?

¡Saludos!
______________
Respeta las Normas del Foro
No hagas doble post, usa la opción
Utiliza el buscador antes de abrir un nuevo tema
Email oficial PaginaWebGratis.es: support-es@webme.com
Mensaje03-10-2010, 15:10 (UTC)    
Título del mensaje:

help-4-pwg escribió:
Tu te refieres, por ejemplo, a lo que tiene team-ayudamaster en su web (www.team-ayudamaster.es.tl). Encima de la página pone " Por favor espere, se esta cargando el sitio web."

Podrías preguntarle a él, a ver si te lo dice, ¿no?

¡Saludos!


Si pero que tape toda la pagina...
______________
¿Quieres visitas y premios gratis?
¡Participa en nuestro Top-Ranking!

¿A que esperas? ¡Participa ya!
http://www.lsw-gratis.es.tl/Top_Ranking.htm

Un saludo!!
Mensaje03-10-2010, 15:16 (UTC)    
Título del mensaje:

¿Cómo que tape toda la página? ¿Que tu página desaparezca?

Entonces no sé como hacerlo...

¡Saludos!
______________
Respeta las Normas del Foro
No hagas doble post, usa la opción
Utiliza el buscador antes de abrir un nuevo tema
Email oficial PaginaWebGratis.es: support-es@webme.com
Mensaje03-10-2010, 17:59 (UTC)    
Título del mensaje:

bueno noc si es lo que busca pero aki esta


para poner una imagen de cargando


http://www.paginawebgratis.es/forum/viewtopic.php?p=8948#8948

Ventana de alerta en tu web con un mensaje


Código:
<script language="JavaScript" type="text/javascript">
alert("Pon aqui el mensaje que quieres!");
</script>


Ventana de aviso


Código:
<!-- www.cssplantillas.es.tl -->
<div id="postit">
<div align="right"><a href="javascript:closeit()" title="Cerrar"><font color="red"><b>X</b></font></a></div>
<b>Titulo:</b><br />
Aqui pon Mensaje que quieres mostrar
</div>
<style>#postit{display:scroll;position:fixed;bottom:10px;left:5px;visibility:hidden;
background:#333;color:#ccc;border:2px solid #ff9900;
z-index:100;font:12px verdana;width:200px;padding:3px;height:100px;}
#postit a{color:#ff9900;text-decoration:none;}</style>
<!-- desde aqui no modificar nada -->
<script>
var once_per_browser=0
var ns4=document.layers
var ie4=document.all
var ns6=document.getElementById&&!document.all
if (ns4)
crossobj=document.layers.postit
else if (ie4||ns6)
crossobj=ns6? document.getElementById("postit") : document.all.postit
function closeit(){
if (ie4||ns6)
crossobj.style.visibility="hidden"
else if (ns4)
crossobj.visibility="hide"}
function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { // if cookie exists
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))}}
return returnvalue;}
function showornot(){
if (get_cookie('postdisplay')==''){
showit()
document.cookie="postdisplay=yes"}}
function showit(){
if (ie4||ns6)
crossobj.style.visibility="visible"
else if (ns4)
crossobj.visibility="show"}
if (once_per_browser)
showornot()
else
showit()
</script>
<script language="JavaScript1.2">
function drag_drop(e){
if (ie4&&dragapproved){
crossobj.style.left=tempx+event.clientX-offsetx+'px'
crossobj.style.top=tempy+event.clientY-offsety+'px'
return false}
else if (ns6&&dragapproved){
crossobj.style.left=tempx+e.clientX-offsetx+'px'
crossobj.style.top=tempy+e.clientY-offsety+'px'
return false}}
function initializedrag(e){
if (ie4&&event.srcElement.id=="postit"||ns6&&e.target.id=="postit"){
offsetx=ie4? event.clientX : e.clientX
offsety=ie4? event.clientY : e.clientY
tempx=parseInt(crossobj.style.left)
tempy=parseInt(crossobj.style.top)
dragapproved=true
document.onmousemove=drag_drop}}
document.onmousedown=initializedrag
document.onmouseup=new Function("dragapproved=false")
</script>
<!-- www.cssplantillas.es.tl -->

______________


Ultima edición por junior26 el Dom Oct 03, 2010 2:00 pm; editado 1 vez
Mensaje03-10-2010, 18:08 (UTC)    
Título del mensaje:

Quizás te sirva alguno de los links que ha aportado junior26 (que es usuario Junior xD).

Di algo si solucionas tu problema.

¡Saludos!
______________
Respeta las Normas del Foro
No hagas doble post, usa la opción
Utiliza el buscador antes de abrir un nuevo tema
Email oficial PaginaWebGratis.es: support-es@webme.com
Mensaje03-10-2010, 20:27 (UTC)    
Título del mensaje:

Mañana lo dire... ahora estoy ocupado...



PD: Han entrado 38 usuarios de golpe hace horas y no se como


PD2: Me voy a dormir XD (soy de españa)
______________
¿Quieres visitas y premios gratis?
¡Participa en nuestro Top-Ranking!

¿A que esperas? ¡Participa ya!
http://www.lsw-gratis.es.tl/Top_Ranking.htm

Un saludo!!
Mensaje04-10-2010, 14:05 (UTC)    
Título del mensaje:

junior26 escribió:
bueno noc si es lo que busca pero aki esta


para poner una imagen de cargando


http://www.paginawebgratis.es/forum/viewtopic.php?p=8948#8948

Ventana de alerta en tu web con un mensaje


Código:
<script language="JavaScript" type="text/javascript">
alert("Pon aqui el mensaje que quieres!");
</script>


Ventana de aviso


Código:
<!-- www.cssplantillas.es.tl -->
<div id="postit">
<div align="right"><a href="javascript:closeit()" title="Cerrar"><font color="red"><b>X</b></font></a></div>
<b>Titulo:</b><br />
Aqui pon Mensaje que quieres mostrar
</div>
<style>#postit{display:scroll;position:fixed;bottom:10px;left:5px;visibility:hidden;
background:#333;color:#ccc;border:2px solid #ff9900;
z-index:100;font:12px verdana;width:200px;padding:3px;height:100px;}
#postit a{color:#ff9900;text-decoration:none;}</style>
<!-- desde aqui no modificar nada -->
<script>
var once_per_browser=0
var ns4=document.layers
var ie4=document.all
var ns6=document.getElementById&&!document.all
if (ns4)
crossobj=document.layers.postit
else if (ie4||ns6)
crossobj=ns6? document.getElementById("postit") : document.all.postit
function closeit(){
if (ie4||ns6)
crossobj.style.visibility="hidden"
else if (ns4)
crossobj.visibility="hide"}
function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { // if cookie exists
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))}}
return returnvalue;}
function showornot(){
if (get_cookie('postdisplay')==''){
showit()
document.cookie="postdisplay=yes"}}
function showit(){
if (ie4||ns6)
crossobj.style.visibility="visible"
else if (ns4)
crossobj.visibility="show"}
if (once_per_browser)
showornot()
else
showit()
</script>
<script language="JavaScript1.2">
function drag_drop(e){
if (ie4&&dragapproved){
crossobj.style.left=tempx+event.clientX-offsetx+'px'
crossobj.style.top=tempy+event.clientY-offsety+'px'
return false}
else if (ns6&&dragapproved){
crossobj.style.left=tempx+e.clientX-offsetx+'px'
crossobj.style.top=tempy+e.clientY-offsety+'px'
return false}}
function initializedrag(e){
if (ie4&&event.srcElement.id=="postit"||ns6&&e.target.id=="postit"){
offsetx=ie4? event.clientX : e.clientX
offsety=ie4? event.clientY : e.clientY
tempx=parseInt(crossobj.style.left)
tempy=parseInt(crossobj.style.top)
dragapproved=true
document.onmousemove=drag_drop}}
document.onmousedown=initializedrag
document.onmouseup=new Function("dragapproved=false")
</script>
<!-- www.cssplantillas.es.tl -->


Gracias... pero lo que yo queria era algo como las tres opciones...

1: que salga cargando...
2: una tabla pero en el cetro y que se ciere automaticamente...
3: Que sea de diseño como el codigo 3...


______________
¿Quieres visitas y premios gratis?
¡Participa en nuestro Top-Ranking!

¿A que esperas? ¡Participa ya!
http://www.lsw-gratis.es.tl/Top_Ranking.htm

Un saludo!!
Mostrar mensajes anteriores:   


Powered by phpBB © 2001, 2005 phpBB Group