Ir para conteúdo
Fórum Script Brasil

alemones

Membros
  • Total de itens

    4
  • Registro em

  • Última visita

Sobre alemones

alemones's Achievements

0

Reputação

  1. Galera tenho esse banner aqui: http://www.bravio.com.br/ripple.html com uma animação so na faixa. Só que no começo de aparecer o avião, ele dá uma acelerada e depois diminiu a velocidade. Isso acontece com as nuvem também. O AS é: //the number of slats used to make the flag effect number_of_slats = 40; //speed at which the flag waves speed_of_flag = 0.1; //the ammount the flag waves ammount_of_movement = 5; //the length of the wave. small numbers make a larger wave. wave_length = 0.2; //calculates the width of each slat width_workout = attachMovie("flag", "width_tester", 1); slat_width = width_workout._width/number_of_slats; width_workout.removeMovieClip(); //creates the movie clips of the flag for (i=1; i<number_of_slats; i++) { //creates an instance of the flag movie current_slat = attachMovie("flag", "slat"+i, i); //sets the mask width to the slats width. the +1 is to remove hariline gaps current_slat.flag_mask._width = slat_width+1; //sets the masks possition according to its number current_slat.flag_mask._x = slat_width*i; } j=1; this.onEnterFrame = function(){ j+=speed_of_flag; for (i=1; i<number_of_slats; i++) { //move the slats Y position based on sin. this["slat"+i]._y = Math.sin(j+i*wave_length)*ammount_of_movement; } } O que pode ser que está acontecendo? No aguardo Valeu Alemones
  2. alemones

    Script Php linguas

    Galera alguém saberia se há algum script em php que faça o site ficar em varios idiomas? Clica na bandeira e muda pra Ingles Portigues ou Espanhol? O site é www.bravio.com.br Valeu Alemones
  3. Galera to atualizando o site da empresa: http://www.bravio.com.br/2009/empresa.htm e to quebrando a cabeça com as malditas tabelas. Do lado direito teno uma enquete, e um cadastro. no centro vão os textos, so que quando adiciono muito terxto, o lado direito desce junto. No exemplo que passei: http://www.bravio.com.br/2009/empresa.htm a enquet desceu. Como posso resolver isso? Valeu Alemones
  4. Galera, tenho um js com slide nessa pagina: http://bravio.com.br/2009/ver_produto.php?...;id_categoria=1 No Firefox funciona normal agora no IE7 não funciona.Oque pode estar de errado? Valeu Alemones
×
×
  • Criar Novo...