Ir para conteúdo
Fórum Script Brasil

X.bArArA.X

Membros
  • Total de itens

    1.033
  • Registro em

  • Última visita

Tudo que X.bArArA.X postou

  1. Tenho meu sistema pra adicionah produtos no site. Ateh aih tudo beim. Porém, preciso mostrar as imagens q staum no BD, uma ao lado da outra. Quando chegar na 6 imagem, ele pula pra linha de baixo. Entenderam? Quando não tiveh produtos no bd, dizer q não hah produtos. é isso q preciso. Alguehm pode me ajudah?
  2. X.bArArA.X

    Menu Em Tudo

    Através do include do ASP ou do PHP... Tb por frames ou iframes do html... Tem include em javascript se não me engano tb.
  3. Provavelmente esta página q você stah qrendo abrih é alguma linguagem dinâmica e você stah seim o server para testá-la. Experimente jogah-la no ar.
  4. Como você acha? Teim um botaum "pesquisar" aki em cima. Clica lá e digita "livro de visitas". só em html não teim como não. Precisa de linguagem dinâmica, ASP, PHP...
  5. X.bArArA.X

    Tabela

    A tabela sempre se adaptará ao seu conteúdo. Com certeza vai esticar. AS vezes, tabela dentro de tabela acaba "travando-a".
  6. Num dá... IE não executa exe, ou melhor executa arquivo nenhum... você precisa de plugins para poder executar um flash, um vihdeo... Porém, não existe plugin pa executah exe.
  7. A questaum do PHP, c o teu server teim suporte, basta jogar a index.php lá q ele já le! não pode ter outra index.htm ou outra extensaum.
  8. é isso mesmo q você disse, pelos eventos do mouse... Pesquise em javascript, lembrando que você vai tr q ter as duas imagens, a normal e a preta e branco.
  9. é uma imagem de background leve (não sei como) e o flash transparent por cima com outras imagens. Provavelmente o conteuhdo é dividido em layers.
  10. Creio q é porque o site da UOL é muito leve. Imagens mesmo saum só as figuras. Fora isso, é tudo cohdigo. Por isso q carrega meio rahpido, sm contah q as figuras saum muitu leves.
  11. Creio q só com linguagem dinâmica, rapaiz...! VO movê pra java script.
  12. Veja o nome do seu frame 2 e coloco o target apontando pra ele.
  13. X.bArArA.X

    Html X Eml

    Esse monte d nuhmero seria o endereço da muhsica. Coloca ae pra gente v. Copia e cola num programa de fazer download, tipo um flashget, download accelerator... Dae ele vai baxah!
  14. X.bArArA.X

    Me Ajudem

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <?php // Copyright information: // author: Tom Gries // date: 2001/12/12 // email: tom.gries@xsurf.net // name: phpSlideShow // version: v1.1 - 2002/01/06 /* Dieses Script zeigt die Pics in einem Verzeichnis als Slide-Show an. Berücksichtigt werden dabei alle Pics mit den Endungen, die im Array $allowedXtension definiert sind. Im Normalfall brauchen an diesem Script keine Aenderungen vorgenommen werden. Falls dieses Script in mehreren Verzeichnissen verwendete werden soll (was já sehr wahrscheinlich ist;-)), dann sollte man in dieses Script zentral ablegen und in den entsprechenden Verzeichnissen lediglich ein Script mit einem Include auf dieses Script ablegen. Wenn die Reihenfolge wichtig ist, muß folgende Namenskonvention für die Pics gewaehlt werden: <PicName>_<LfdNr>.<Endung> Also zum Beispiel: der_baum_01.jpg der_baum_02.gif der_baum_03.jpg ... der_baum_12.jpg Verschiedene Dateitypen (Endungen) koennen gemischt werden. Allerdings muss die laufende Nummer immer mit soviel fuehrenden Nullen aufgefuellt werden, das alle die gleiche Anzahl Stellen haben. Mit den Variablen $tblWidth und $tblHeight werden die Tabellenbreite und Höhe angegeben. Wenn dies auf "" gesetzt wird, passt sich die Tabelle dynamisch an. */ $tblWidth = "650"; $tblHeight = "430"; $rowHeight = "20"; $showDirectoryIndex = TRUE; $showHomepage = TRUE; $allowedXtension = array("jpg", "gif"); $curdir = getcwd(); $dir = opendir($curdir); $file = "."; if( !isset($showPic) ) { $showPic = 0; } if($showDirectoryIndex) { $DirectoryIndex = "&nbsp;DirectoryIndex&nbsp;"; } else { $DirectoryIndex = "&nbsp;"; } if($showHomepage) { $Homepage = "&nbsp;Homepage&nbsp;"; } else { $Homepage = "&nbsp;"; } while(false !== ($file = readdir($dir))) { $xtension = explode(".",$file); $xtension = strtolower($xtension[count($xtension) - 1]); if( $file != "." && $file != ".." && in_array($xtension, $allowedXtension) ) { $picName[] = $file; } } sort($picName, SORT_STRING); $NrFiles = count($picName); ?> <style type="text/css"> BODY { BACKGROUND-COLOR:#FFFFFF; COLOR:#003366; FONT-FAMILY:Verdana,Arial,Helvetica,Geneva,Swiss,SunSans-Regular; FONT-SIZE:9pt; FONT-STYLE:normal; FONT-WEIGHT:bold; TEXT-ALIGN:left; TEXT-DECORATION:none; margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; background-image: url(imagens/fundo.gif); } .counter { COLOR:#333333; FONT-SIZE:9pt; FONT-WEIGHT:bold; TEXT-DECORATION:none; font-family: Verdana, Arial, Helvetica, sans-serif; } A, A:visited, A:active { COLOR:#003366; FONT-SIZE:9pt; FONT-WEIGHT:bold; TEXT-DECORATION:none; } A:hover { COLOR:#003366; FONT-SIZE:9pt; FONT-WEIGHT:bold; TEXT-DECORATION:underline; } .style1 {color: #a5db00} </style><html> <head> <title>phpSlideShow - <?php echo $picName[$showPic] ?></title> </head> <body> <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td align="center" valign="middle"><table width="200" border="0" cellpadding="0" cellspacing="1" bgcolor="#FFFFFF"> <tr> <td><table width="200" border="0" cellpadding="0" cellspacing="1" bgcolor="#666666"> <tr> <td><table width="200" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#AEAEAE" bgcolor="#FFFFFF"> <tr> <td><p align="center"><img src="imagens/logo.gif" width="730" height="70"></p> <table width="<?php echo $tblWidth; ?>" height="<?php echo $tblHeight; ?>" border="0" cellspacing="0" cellpadding="0" align="center" bordercolor="#000000"> <tr> <td align="center" valign="top"><a href="<?php echo $picName[$showPic] ?>" target="_blank"><img src="<?php echo $picName[$showPic] ?>" alt="<?php echo $picName[$showPic] ?>" border="0"></a></td> </tr> </table> <br> <table width="<?php echo $tblWidth; ?>" border="0" cellspacing="0" cellpadding="0" align="center" bordercolor="#000000"> <tr> <td width="20%" align="right"> &nbsp; <?php if( $showPic > 0 ) { $PrevPic = $showPic - 1; ?> <a href="<?php echo "$PHP_SELF?showPic=$PrevPic" ?>">&nbsp;<span class="style1">Anterior</span>&nbsp;</a> <?php } ?> </td> <td width="20%" height="<?php echo $rowHeight; ?>" align="center" class="counter"> &nbsp; <?php echo "[" . ($showPic + 1) . "/" . count($picName) . "]"; ?> &nbsp; </td> <td width="20%" height="<?php echo $rowHeight; ?>" align="left"> <?php if( $showPic != count($picName) - 1 ) { $NextPic = $showPic + 1; ?> <a href="<?php echo "$PHP_SELF?showPic=$NextPic" ?>">&nbsp;<span class="style1">Proxima</span>&nbsp;</a> <?php } ?> &nbsp; </td> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> <p align="center">&nbsp;</p> </body> </html>
  15. Vlewz, Ricardo... não entendih muito beim sua resposta!
  16. Se for somente com html, pesquise sobre IFRAME ou LAYERS.
  17. X.bArArA.X

    Me Ajudem

    Se quiser em php, eu tenho um sisteminha bom q é só indica a pasta onde estão as imagens. é só falah!
  18. X.bArArA.X

    Me Ajudem

    Tem sim... Neste caso você faria uma page para cada foto, em sequência, e colocaria os botões. Porém, dependendo o número de imagens, fica complicado, né. Creio que haja algo javascript.
  19. Complicou! Deixa pra lá! Obrigado, Fabi!
  20. FAz em flash, coloca no html e adciona no fundo de tela. Em html não sei c dá. Em flash, seria algo de fscomand (EU ACHO).
  21. Aez, galera... é o seguinte, meu site tem um menu em flash e o resto em html. Gostaria de algum script q forçasse o carregamento do menu em flash pra depois carregar as imagem e os códigos html q estaum abaixo. Vlewz!
  22. X.bArArA.X

    Ajuda!

    Tutorial para programação? Sem chances! O jeito é você pegar uma apostila e "desbravá-la".
  23. X.bArArA.X

    Iframe

    Ou coloca o iframe dentro duma tabela. Dae insira uma linha acima.
  24. LEmbrando que esta imagem deve tah em algum lugar na web com o link apontando pra ela.
  25. Boa tarde...! Gostaria de saber se vocês conhecem alguma maneira de arredondar os cantos de uma tabela ou é só através de imagem mesmo? Obrigado!
×
×
  • Criar Novo...