Português
<html> <head> <title>Listagem 35.13. Uma transição Wipe para o slide recebido</title> <script language="JavaScript" type="text/javascript"> // Este array contém todos os objetos compatíveis com DHTML do documento var dhtml_objects = new Array() // Esta função cria os objetos personalizados que servem como front-ends entre navegadores function create_object_array() { // Todas as tags <div> e <span> são armazenadas nessas variáveis var div_tags var span_tags var css_tags // O navegador é compatível com W3C DOM? if (document.getElementById) { // Se sim, use getElementsByTagName() para obter as tags <div> div_tags = document.getElementsByTagName("div") // Faça um loop pelas tags <div> for (var counter = 0; counter < div_tags.length; counter++) { // Armazena o objeto atual current_object = div_tags[counter] // Armazena como o navegador acessa os estilos object_css = current_object.style // Armazena o id do objeto object_id = current_object.id // Armazena apenas essas tags que possuem um id if (object_id) { // cria um novo dhtml_object e armazena-o em dhtml_objects dhtml_objects[object_id] = new dhtml_object(current_object, object_css, object_id) } } // Use getElementsByTagName() para obter as tags <span> span_tags = document.getElementsByTagName("span") // Percorre as tags <span> for (var counter = 0; counter < span_tags.length; counter++) { // Armazena o objeto atual current_object = span_tags[counter] // Armazena como o navegador acessa os estilos object_css = current_object.style // Armazena o id do objeto object_id = current_object.id // Armazena apenas as tags que possuem um id if (object_id) { // cria um novo dhtml_object e armazena-o em dhtml_objects dhtml_objects[object_id] = new dhtml_object(current_object, object_css, object_id) } } } // O navegador é compatível com DHTML DOM? else if (document.all) { // Se sim, use document.all para obter as tags <div> div_tags = document.all.tags("div") // Faça um loop pelas tags <div> for (var counter = 0; counter < div_tags.length; counter++) { // Armazena o objeto atual current_object = div_tags[counter] // Armazena como o navegador acessa os estilos object_css = current_object.style // Armazena o id do objeto object_id = current_object.id // Apenas armazene aquelas tags que possuem um id if (object_id) { // crie um novo dhtml_object e armazene-o em dhtml_objects dhtml_objects[object_id] = new dhtml_object(current_object, object_css, object_id) } } // Use document.all para obter o <span > tags span_tags = document.all.tags("span") // Percorre as tags <span> for (var counter = 0; counter < span_tags.length; counter++) { // Armazena o objeto atual current_object = span_tags[counter ] // Armazena como o navegador acessa os estilos object_css = current_object.style // Armazena o id do objeto object_id = current_object.id // Armazena apenas as tags que possuem um id if (object_id) { // cria um novo dhtml_object e armazena-o em dhtml_objects dhtml_objects[object_id] = new dhtml_object(current_object, object_css, object_id) } } } // O navegador é compatível com LDOM? else if (document.layers) { // Use document.layers para obter as tags <div> e <span> posicionadas css_tags = document.layers // Faça um loop pelas camadas for (var counter = 0; counter < css_tags.length; counter++) { // Armazena o objeto atual current_object = css_tags[counter] // Armazena como o navegador acessa os estilos object_css = current_object // Armazena o id do objeto object_id = current_object.id // Armazena apenas as tags que possuem um id if (object_id ) { // cria um novo dhtml_object e armazena-o em dhtml_objects dhtml_objects[object_id] = new dhtml_object(current_object, object_css, object_id) } } } } function dhtml_object (obj, css, id) { this.obj = obj this.css = css this.id = id this.left = get_left this.right = get_right this.top = get_top this.bottom = get_bottom this.width = get_width this.height = get_height this.visibility = get_visibility this.zIndex = get_zIndex this.move_to = move_to this.move_by = move_by this.set_left = set_left this.set_top = set_top this.set_width = set_width this.set_height = set_height this.set_visibility = set_visibility this.set_zIndex = set_zIndex this.move_above = move_above this.move_below = move_below this.set_backgroundColor = set_backgroundColor this.set_backgroundImage = set_backgroundImage this.set_html = set_html this.get_clip_top = get_clip_top this.get_clip_right = get_clip_right this.get_clip_bottom = get_clip_bottom this.get_clip_left = get_clip_left this.get_clip_width = get_clip_width this.get_clip_height = get_clip_ altura this.resize_clip_to = resize_clip_to this.resize_clip_by = resize_clip_by } função get_left() { return parseInt(this.css.left) } função get_right() { return this.left() + this.width() } função get_top() { return parseInt(this.css.top) } function get_bottom() { return this.top() + this.height() } function get_width() { // Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Se sim, a largura está definida? if (this.css.width) { // Se sim, retorne a propriedade width return parseInt(this.css.width) } else { // Caso contrário, retorne a propriedade offsetWidth return parseInt(this.obj.offsetWidth) } } else { // Caso contrário, retorne a largura do documento da camada return parseInt(this.obj.document.width) } } function get_height() { // Este é um navegador DOM W3C ou DHTML? if (!document.layers) { // Se sim, a altura está definida? if (this.css.height) { // Se sim, retorne a propriedade height return parseInt(this.css.height) } else { // Caso contrário, retorne a propriedade offsetHeight return parseInt(this.obj.offsetHeight) } } else { // Caso contrário, retorne a altura do documento da camada return parseInt(this.obj.document.height) } } function get_visibility() { // Este é um navegador DOM W3C ou DHTML? if (!document.layers) { // Se sim, a visibilidade está definida? if (this.css.visibility) { // Se sim, retorne a propriedade de visibilidade return this.css.visibility } } else { // Caso contrário, é um navegador LDOM, então // manipule os valores de visibilidade proprietários if (this.css .visibility == "show") { return "visible" } if (this.css.visibility == "hide") { return "hidden" } } // Se chegarmos até aqui, basta retornar "inherit" return "inherit " } function get_zIndex() { return this.css.zIndex } function move_to (new_left, new_top) { this.css.left = new_left this.css.top = new_top } function move_by (delta_left, delta_top) { // Adicione o delta valores this.css.left = this.left() + parseInt (delta_left) this.css.top = this.top() + parseInt (delta_top) } função set_left (new_left) { this.css.left = new_left } função set_top (new_top) { this.css.top = new_top } function set_width (new_width) { // Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Se sim, basta definir a propriedade de largura this.css.width = new_width } } function set_height (new_height) { // Este é um navegador DOM W3C ou DHTML? if (!document.layers) { // Se sim, basta definir a propriedade de largura this.css.height = new_height } } function set_visibility (new_visibility) { // Este é um navegador DOM W3C ou DHTML? if (!document.layers) { // Se sim, apenas defina a visibilidade // para o valor do argumento this.css.visibility = new_visibility } else { // Caso contrário, defina os valores de visibilidade proprietários if (new_visibility == " visível") { this.css.visibility = "mostrar" } else if (new_visibility == "oculto") { this.css.visibility = "ocultar" } else { this.css.visibility = "herdar" } } } função set_zIndex(new_zindex) { // O novo índice z é maior que 0? if (new_zindex > 0) { // Se sim, defina this.css.zIndex = new_zindex } else { // Se não, defina como 0 this.css.zIndex = 0 } } function move_above(reference_object) { this. css.zIndex = reference_object.css.zIndex + 1 } function move_below(reference_object) { // Obtenha o índice z do objeto de referência reference_zindex = reference_object.css.zIndex // É maior que 0? if (reference_zindex > 0) { // Se sim, defina o zindex deste objeto como um a menos this.css.zIndex = reference_zindex - 1 } else { // Se não, defina o z-index do objeto de referência como 1 // e este objeto z-index para 0 reference_object.css.zIndex = 1 this.css.zIndex = 0 } } function set_backgroundColor(new_color) { // Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Se sim, use a propriedade backgroundColor this.css.backgroundColor = new_color } else { // Caso contrário, use a propriedade bgcolor this.css.bgColor = new_color } } function set_backgroundImage(new_image) { // Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Se sim, use a propriedade backgroundImage this.css.backgroundImage = "url(" + new_image + ")" } else { // Caso contrário, use a propriedade background this.css.background .src = new_image } } function set_html(new_html) { // Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Se sim, use a propriedade innerHTML this.obj.innerHTML = new_html } else { // Caso contrário, use o método document.write() this.obj.document.open() this .obj.document.write(new_html) this.obj.document.close() } } function get_clip_top() { // Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Se sim, primeiro analise a string do clipe parse_dom_clip(this) // Os valores do clipe estão agora no objeto current_clip return current_clip.top } else { // Caso contrário, use clip.top return this. css.clip.top } } var current_clip function clip_object(superior, direita, inferior, esquerda) { this.top = superior this.right = direita this.bottom = inferior this.left = esquerda } function parse_dom_clip(current_object) { clip_string = current_object.css.clip if (clip_string.length > 0) { var valores_string = clip_string.slice(5, clip_string.length - 1) var clip_values = valores_string.split(" ") var clip_top = parseInt(clip_values[0]) var clip_right = parseInt(clip_values[1]) var clip_bottom = parseInt(clip_values[2]) var clip_left = parseInt(clip_values[3]) } else { var clip_top = 0 var clip_right = current_object.width() var clip_bottom = current_object.height () var clip_left = 0 } current_clip = new clip_object(clip_top, clip_right, clip_bottom, clip_left) } function get_clip_right() { // Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Se sim, primeiro analise a string do clipe parse_dom_clip(this) // Os valores do clipe estão agora no objeto current_clip return current_clip.right } else { // Caso contrário, use clip.right retorne isto. css.clip.right } } function get_clip_bottom() { // Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Se sim, primeiro analise a string do clipe parse_dom_clip(this) // Os valores do clipe estão agora no objeto current_clip return current_clip.bottom } else { // Caso contrário, use clip.bottom retorne isto. css.clip.bottom } } function get_clip_left() { // Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Se sim, primeiro analise a string do clipe parse_dom_clip(this) // Os valores do clipe estão agora no objeto current_clip return current_clip.left } else { // Caso contrário, use clip.left retorne isto. css.clip.left } } function get_clip_width() { // Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Se sim, primeiro analise a string do clipe parse_dom_clip(this) // Os valores do clipe estão agora no objeto current_clip return current_clip.right - current_clip.left } else { // Caso contrário, use clip. width return this.css.clip.width } } function get_clip_height() { // Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Se sim, primeiro analise a string do clipe parse_dom_clip(this) // Os valores do clipe estão agora no objeto current_clip return current_clip.bottom - current_clip.top } else { // Caso contrário, use clip. largura retornar this.css.clip.height } } função resize_clip_to(new_top, new_right, new_bottom, new_left) { if (new_top == "auto") {new_top = this.get_clip_top() } if (new_right == "auto") {new_right = this.get_clip_right() } if (new_bottom == "auto") {new_bottom = this.get_clip_bottom() } if (new_left == "auto") {new_left = this.get_clip_left() } // Este é um Navegador W3C ou DHTML DOM? if (!document.layers) { // Os valores do clipe estão agora no objeto current_clip this.css.clip = "rect(" + new_top + " " + new_right + " " + new_bottom + " " + new_left + ")" } else { // Caso contrário, use as propriedades do clipe this.css.clip.top = new_top this.css.clip.right = new_right this.css.clip.bottom = new_bottom this.css.clip.left = new_left } } function resize_clip_by( delta_top, delta_right, delta_bottom, delta_left) { var new_top = this.get_clip_top() + delta_top var new_right = this.get_clip_right() + delta_right var new_bottom = this.get_clip_bottom() + delta_bottom var new_left = this.get_clip_left() + delta_left / / Este é um navegador W3C ou DHTML DOM? if (!document.layers) { // Os valores do clipe estão agora no objeto current_clip this.css.clip = "rect(" + new_top + " " + new_right + " " + new_bottom + " " + new_left + ")" } else { // Caso contrário, use as propriedades do clipe this.css.clip.top = new_top this.css.clip.right = new_right this.css.clip.bottom = new_bottom this.css.clip.left = new_left } } function get_mouse_x( current_event) { // Este é o Internet Explorer 4 ou posterior? if (its_ie4plus) { // Se sim, retorne a propriedade event.clientX return event.clientX } // Este é o Netscape Explorer 4 ou posterior? else if (its_ns4plus) { // Caso contrário, retorne a propriedade pageX return current_event.pageX } else { // Caso contrário, retorne null return null } } function get_mouse_y(current_event) { // Este é o Internet Explorer 4 ou posterior? if (its_ie4plus) { // Se sim, retorne a propriedade event.clientY return event.clientY } // Este é o Netscape Explorer 4 ou posterior? else if (its_ns4plus) { // Se sim, retorne a propriedade pageY return current_event.pageY } else { // Caso contrário, retorne null return null } } function get_client_width() { // Este é o Internet Explorer 4 ou posterior? if (its_ie4plus) { // Se sim, retorne a propriedade clientWidth return document.body.clientWidth } else if (its_ns4plus) { // Se sim, retorne a propriedade innerWidth return window.innerWidth - 18 } else { // Caso contrário, retorne null return null } } function get_client_height() { // Este é o Internet Explorer 4 ou posterior? if (its_ie4plus) { // Se sim, retorne a propriedade clientHeight return document.body.clientHeight } // Este é o Netscape Explorer 4 ou posterior? else if (its_ns4plus) { // Se sim, retorne a propriedade innerHeight return window.innerHeight - 18 } else { // Caso contrário, retorne null return null } } function get_client_scroll_left() { // Este é o Internet Explorer 4 ou posterior? if (its_ie4plus) { // Se sim, retorne a propriedade scrollLeft return document.body.scrollLeft } // Este é o Netscape Explorer 4 ou posterior? else if (its_ns4plus) { // Se sim, retorne a propriedade pageXOffset return pageXOffset } else { // Caso contrário, retorne null return null } } function get_client_scroll_top() { // Este é o Internet Explorer 4 ou posterior? if (its_ie4plus) { // Se sim, retorne a propriedade scrollTop return document.body.scrollTop } // Este é o Netscape Explorer 4 ou posterior? else if (its_ns4plus) { // Se sim, retorne a propriedade pageYOffset return pageYOffset } else { // Caso contrário, retorne null return null } } </script> <script language="JavaScript" type="text/javascript"> / / Uma dessas variáveis booleanas será // definida como true com base no nome do navegador var its_ie = false var its_ns = false var its_opera = false var its_webtv = false var its_compatível = false // Uma dessas variáveis booleanas será definida como / / true baseado na versão do Internet Explorer var its_ie2 = false var its_ie3 = false var its_ie4 = false var its_ie5 = false var its_ie55 = false var its_ie6 = false var its_ie4plus = false var its_ie5plus = false var its_ie55plus = false var its_ie6plus = false // Uma dessas variáveis booleanas será definida como // true com base na versão do Netscape var its_ns2 = false var its_ns3 = false var its_ns4 = false var its_ns6 = false var its_ns3plus = false var its_ns4plus = false var its_ns6plus = false // Um destes variáveis booleanas serão // definidas como verdadeiras com base no sistema operacional var its_win31 = false var its_win95 = false var its_win98 = false var its_winme = false var its_winnt = false var its_win2000 = false var its_winxp = false var its_windows = false var its_win32 = false var its_mac68k = false var its_macppc = false var its_macos = false var its_linux = false var its_other_os = false // Isso será verdade se o navegador suportar algum tipo de DHTML var dhtml_ok = false // Vamos trabalhar com letras minúsculas para manter as coisas simples var user_agent = navigator.userAgent.toLowerCase() // NOME DO NAVEGADOR // Use indexOf() para examinar a string userAgent // em busca de sinais reveladores do nome do navegador if (user_agent.indexOf("opera") != -1) { its_opera = true } else if (user_agent.indexOf("webtv") != -1) { its_webtv = true } else if (user_agent.indexOf("msie") != -1) { its_ie = true } else if (user_agent. indexOf("mozilla") != -1) { // Para "moziila", precisamos descartar algumas outras possibilidades, primeiro if ((user_agent.indexOf("compatível") == -1) && (user_agent.indexOf ("spoofer") == -1) && (user_agent.indexOf("hotjava") == -1)) { its_ns = true } else { its_compatível = true } } // VERSÃO DO NAVEGADOR var major_version = parseInt(navigator.appVersion ) var full_version = parseFloat(navigator.appVersion) var ie_start = user_agent.indexOf("msie") if (ie_start != -1) { var version_string = user_agent.substring(ie_start + 5) major_version = parseInt(version_string) full_version = parseFloat (versão_string) } // EXPLORADOR DE INTERNET if (its_ie || its_webtv) { if (versão_principal <3) { its_ie2 = true } else if (versão_principal == 3) { its_ie3 = true } else if (versão_principal == 4) { its_ie4 = true } else if (versão_principal == 5) { its_ie5 = true } else if (full_version == 5.5) { its_ie55 = true } else if (major_version == 6) { its_ie6 = true } if (major_version >= 4) { its_ie4plus = true } if (major_version >= 5) { its_ie5plus = true } if (full_version >= 5.5) { its_ie55plus = true } if (major_version >= 6) { its_ie6plus = true } } // NETSCAPE if (its_ns) { if (major_version <3) { its_ns2 = true } else if ( versão_maior < 4) { its_ns3 = true } else if (versão_maior == 4) { its_ns4 = true } else if (versão_maior == 5) { its_ns6 = true } if (versão_maior >= 3) { its_ns3plus = true } if (versão_maior >= 4) { its_ns4plus = true } if (major_version >= 5) { its_ns6plus = true } } // SISTEMA OPERACIONAL // Use indexOf() para examinar a string userAgent // em busca de sinais reveladores do sistema operacional // WINDOWS 3.1 if ((user_agent.indexOf("windows 3.1") != -1) || (user_agent.indexOf("win16") != -1) || (user_agent.indexOf("16 bits") != -1) || (user_agent.indexOf("16 bits") != -1)) { its_win31 = true } // WINDOWS 95 else if ((user_agent.indexOf("windows 95") != -1) || (user_agent.indexOf ("win95") != -1)) { its_win95 = true } // WINDOWS ME if (user_agent.indexOf("win 9x 4.90") != -1) { its_winme = true } // WINDOWS 98 else if (( user_agent.indexOf("windows 98") != -1) || (user_agent.indexOf("win98") != -1)) { its_win98 = true } // WINDOWS XP else if ((user_agent.indexOf("windows nt 5.1") != -1) || (user_agent.indexOf("winnt 5.1") != -1)) { its_winxp = true } // WINDOWS 2000 else if ((user_agent.indexOf("windows nt 5.0") != -1) || (user_agent.indexOf("winnt 5.0") != -1)) { its_win2000 = true } // WINDOWS NT else if ((user_agent.indexOf("windows nt") != -1) || (user_agent.indexOf("winnt") != -1)) { its_winnt = true } // MAC 680x0 else if ((user_agent.indexOf("mac") != -1) && ((user_agent.indexOf( "68K") != -1) || (user_agent.indexOf("68000") != -1))) { its_mac68k = true } // MAC PowerPC else if ((user_agent.indexOf("mac") != -1) && ((user_agent.indexOf("ppc") != -1) || (user_agent.indexOf("powerpc") != -1))) { its_macppc = true } // LINUX else if (user_agent.indexOf("linux") != -1) { its_linux = true } // OUTRO SO else { its_other_os = true } // PLATAFORMA // Use os booleanos do sistema operacional para // determinar a plataforma geral // MAC OS if (its_mac68k || its_macppc) { its_macos = true} // WINDOWS de 32 bits if (its_win95 || its_win98 || its_winme || its_winnt || its_win2000 || its_winxp) {its_win32 = true} // WINDOWS if (its_win31 || its_win32) {its_windows = true} // SUPORTE DHTML if (document.getElementById || document.all || documento .layers) { dhtml_ok = true } </script> <script language="JavaScript" type="text/javascript"> <!-- var slides = new Array() var slide_width = 525 var slide_height = 296 slides[0] = new Image(slide_width, slide_height) slides[0].src = "/u/info_img/2009-06/20/fiesole1.jpg" slides[0].caption = "Um teatro romano com 3.000 lugares de cerca de 100 a.C. ( Fiesole, Itália)" slides[1] = nova imagem(slide_width, slide_height) slides[1].src = "/u/info_img/2009-06/20/fiesole2.jpg" slides[1].caption = "ruínas etruscas de cerca de 600 aC (Fiesole, Itália)" slides[2] = new Image(slide_width, slide_height) slides[2].src = "/u/info_img/2009-06/20/florence04.jpg" slides[2]. caption = "Piazza Della Signoria (Florença, Itália)" slides[3] = new Image(slide_width, slide_height) slides[3].src = "/u/info_img/2009-06/20/florence06.jpg" slides[ 3].caption = "The Boboli Gardens (Florence, Italy)" // Use essas variáveis para configurar o visualizador var scroll_amount = 10 var scroll_delay = 50 var timeout_id var current_slide = 0 var pendente_slide = 1 var scrolling var Transitions = new Array( "slide", "wipe") var h_directions = new Array("esquerda", "direita", "ambos", "nenhum") var v_directions = new Array("para baixo", "para cima", "ambos", "nenhum ") var viewer_data = new viewer_data_object() // Esta função cria o objeto visualizador function viewer_data_object(width, height, top, left, scrollamount) {} function inicialize() { // Se este for um navegador não-DHTML, resgate if (!dhtml_ok) { return } // cria os objetos DHTML create_object_array() // Configura o objeto visualizador viewer_data.width = dhtml_objects['viewer1'].width() viewer_data.height = dhtml_objects['viewer1'].height () viewer_data.top = dhtml_objects['viewer1'].top() viewer_data.left = dhtml_objects['viewer1'].left() viewer_data.scrollamount = scroll_amount viewer_data.scrolldelay = scroll_delay viewer_data.scroll_start = slide_width viewer_data.transition = transições [0] viewer_data.h_direction = h_directions[0] viewer_data.v_direction = v_directions[0] write_controls() } // Esta função define a posição inicial do visualizador e a região do clipe function initialize_viewer() { // Ocultar viewer2 dhtml_objects['viewer2'] .set_visibility("hidden") // Coloca na imagem principal dhtml_objects['viewer1'].set_html('<img src="' + slides[current_slide].src + '">') // Redefini-lo para visualização completa dhtml_objects['viewer1'].move_to(viewer_data.left, viewer_data.top) dhtml_objects['viewer1'].resize_clip_to(0, viewer_data.width, viewer_data.height, 0) // selecione uma transição aleatória viewer_data.transition = transactions[ Math.floor(transitions.length * Math.random())] viewer_data.h_direction = h_directions[Math.floor(h_directions.length * Math.random())] viewer_data.v_direction = v_directions[Math.floor(v_directions.length * Math.random())] // Define o sinalizador de rolagem scrolling = true // atualiza os controles write_controls() if (viewer_data.transition == "slide") { slide_out() } else { limpe_out() } } function next_slide( ) { // Alterar o número do slide pendente pendente_slide = current_slide + 1 inicialize_viewer() } function previous_slide() { // Alterar o número do slide pendente pendente_slide = current_slide - 1 inicialize_viewer() } function slide_out() { // Verifique a largura e altura da região de clipe do objeto if (dhtml_objects['viewer1'].get_clip_width() > 0 && dhtml_objects['viewer1'].get_clip_height() > 0) { // Se ambos ainda forem positivos, continue deslizando var horizontal_move = 0 var vertical_move = 0 var top_resize = 0 var right_resize = 0 var bottom_resize = 0 var left_resize = 0 // Obtenha os ajustes horizontais if (viewer_data.h_direction == "left") { horizontal_move = -viewer_data.scrollamount left_resize = viewer_data.scrollamount } else if (viewer_data.h_direction == "direita") { horizontal_move = viewer_data.scrollamount right_resize = -viewer_data.scrollamount } else if (viewer_data.h_direction == "ambos") { left_resize = viewer_data.scrollamount right_resize = -viewer_data.scrollamount } / / Obtenha os ajustes verticais if (viewer_data.v_direction == "down") { vertical_move = viewer_data.scrollamount bottom_resize = -viewer_data.scrollamount } else if (viewer_data.v_direction == "up") { vertical_move = -viewer_data.scrollamount top_resize = viewer_data.scrollamount } else if (viewer_data.v_direction == "both") { bottom_resize = -viewer_data.scrollamount top_resize = viewer_data.scrollamount } // Move o objeto dhtml_objects['viewer1'].move_by(horizontal_move, vertical_move) // Ajusta a região do clipe dhtml_objects['viewer1'].resize_clip_by(top_resize, right_resize, bottom_resize, left_resize) // Defina um novo tempo limite timeout_id = setTimeout("slide_out()", viewer_data.scrolldelay) write_controls() } else { // Limpa o timeout clearTimeout(timeout_id) // O slide pendente agora é o slide atual current_slide = pendente_slide // Prepara o slide recebido prepare_next_slide() } } function wipe_out() { // Verifica a largura e a altura da região do clipe do objeto if (dhtml_objects[ 'viewer1'].get_clip_width() > 0 && dhtml_objects['viewer1'].get_clip_height() > 0) { // Se ambos ainda forem positivos, continue limpando var top_resize = 0 var right_resize = 0 var bottom_resize = 0 var left_resize = 0 // Obtenha os ajustes horizontais if (viewer_data.h_direction == "left") { right_resize = -viewer_data.scrollamount } else if (viewer_data.h_direction == "right") { left_resize = viewer_data.scrollamount } else if (viewer_data. h_direction == "both") { left_resize = viewer_data.scrollamount right_resize = -viewer_data.scrollamount } // Obtenha os ajustes verticais if (viewer_data.v_direction == "down") { top_resize = viewer_data.scrollamount } else if (viewer_data.v_direction == "up") { bottom_resize = -viewer_data.scrollamount } else if (viewer_data.v_direction == "both") { bottom_resize = -viewer_data.scrollamount top_resize = viewer_data.scrollamount } // Ajusta a região do clipe dhtml_objects['viewer1' ].resize_clip_by(top_resize, right_resize, bottom_resize, left_resize) // Definir um novo tempo limite timeout_id = setTimeout("wipe_out()", viewer_data.scrolldelay) } else { // Limpar o tempo limite clearTimeout(timeout_id) // O slide pendente é agora o slide atual current_slide = pendente_slide // Prepara o slide recebido prepare_next_slide() } } function stop_it() { // Desliga o visualizador limpando o tempo limite atual clearTimeout(timeout_id) // Limpa o sinalizador de rolagem scrolling = false // atualiza os controles write_controls() } function prepare_next_slide() { // selecione uma transição de limpeza aleatória viewer_data.transition = "wipe" viewer_data.h_direction = h_directions[Math.floor(h_directions.length * Math.random())] viewer_data.v_direction = v_directions[Math.floor(v_directions.length * Math.random())] var top_clip_start = 0 var right_clip_start = viewer_data.width var bottom_clip_start = viewer_data.height var left_clip_start = 0 // Obtenha os ajustes horizontais if (viewer_data.h_direction == "esquerda") { left_clip_start = viewer_data.width } else if (viewer_data.h_direction == "right") { right_clip_start = 0 } else if (viewer_data.h_direction == "ambos") { left_clip_start = Math.floor (viewer_data.width / 2) right_clip_start = Math.floor(viewer_data.width / 2) } // Obtenha os ajustes verticais if (viewer_data.v_direction == "down") { bottom_clip_start = 0 } else if (viewer_data.v_direction == "up") { top_clip_start = viewer_data.height } else if (viewer_data.v_direction == "ambos") { bottom_clip_start = Math.floor(viewer_data.height / 2) top_clip_start = Math.floor(viewer_data.height / 2) } // Adicione a imagem dhtml_objects['viewer2'].set_html('<img src="' + slides[current_slide].src + '">') // Torna o objeto visível dhtml_objects['viewer2'].set_visibility("visible") // Redimensione-o dhtml_objects['viewer2'].resize_clip_to(top_clip_start, right_clip_start, bottom_clip_start, left_clip_start) // Faça a transição de limpeza limpe_in() } function limpe_in() { // Compare a largura e a altura do clipe com a largura e altura do objeto if ( dhtml_objects['viewer2'].get_clip_width() < viewer_data.width || dhtml_objects['viewer2'].get_clip_height() < viewer_data.height) { // Se algum deles for menor, continue limpando var top_resize = 0 var right_resize = 0 var bottom_resize = 0 var left_resize = 0 // Obtenha os ajustes horizontais if ( viewer_data.h_direction == "esquerda") { left_resize = -viewer_data.scrollamount } else if (viewer_data.h_direction == "right") { right_resize = viewer_data.scrollamount } else if (viewer_data.h_direction == "ambos") { left_resize = -viewer_data.scrollamount right_resize = viewer_data.scrollamount } // Obtenha os ajustes verticais if (viewer_data.v_direction == "down") { bottom_resize = viewer_data.scrollamount } else if (viewer_data.v_direction == "up") { top_resize = -viewer_data.scrollamount } else if (viewer_data.v_direction == "both") { bottom_resize = viewer_data.scrollamount top_resize = -viewer_data.scrollamount } // Ajusta a região do clipe dhtml_objects['viewer2'].resize_clip_by(top_resize, right_resize, bottom_resize , left_resize) // Defina um novo tempo limite timeout_id = setTimeout("wipe_in()", viewer_data.scrolldelay) } else { stop_it() } } function write_controls() { // Escreva o número do slide if (rolagem) { slide_text = " Carregando o próximo slide...<p>" } else { slide_text = "Slide #" + eval(current_slide + 1) + "—" + slides[slide_atual].caption + "<p>" } if (slide_atual == 0 || rolagem) { previous_control = "Anterior" } else { previous_control = '<a href="javascript:previous_slide()">Anterior< /a>' } if (current_slide == slides.length - 1 || scrolling) { next_control = "Próximo" } else { next_control = '<a href="javascript:next_slide()">Próximo</a>' } dhtml_objects["controls"].set_html(slide_text + previous_control + " " + next_control) } //--> </script> </head> <body onLoad="initialize()"> <!--IE precisa ter o posicionamento dentro da tag --> <div id="viewer1" style="position:absolute; left:10; top:0"> <img src="/u/info_img/2009-06/20/fiesole1 .jpg"> </div> <div id="viewer2" style="position:absolute; left top:0"></div> <div id="controls" style="position:absolute; :10; topo:325; largura: 525; alinhamento de texto: centro; font-weight:bold"></div> </div> </body> </html>