Ver Mensaje Individual
  #5 (permalink)  
Antiguo 01/06/2009, 21:15
Avatar de danistrein
danistrein
 
Fecha de Ingreso: septiembre-2008
Ubicación: Salta Capital
Mensajes: 550
Antigüedad: 15 años, 8 meses
Puntos: 9
Respuesta: (ayudenme porfa): Poner div flotante

hola Mautematico aki te dejo los codes de un VID flotante , te digo ya lo eh utilisado para crear una web asi que sirbe , mira este es la web que eh creado con el DIV flotante : L2 Fox Die

css:
Código HTML:
.mensajeflotante #barraregistro {
	position: absolute;
	font-size: 8x;
	height: 292px;
	width: 440px;
	background-color: #;
	font-size: 8px;
}
.mensajeflotante #barraregistro #sitiumweb {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8x;
	color: #C4E27A;
	background-color: #C4E27A;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F2F1DA;
	background-repeat: repeat-y;
	font-weight: bold;
}
.floatmensaje
{
	background: #;
	font: 9pt tahoma,verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
	color: #36444F;
}


js:
Código HTML:
function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
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 closebar(IdLayer,persistclose){
if (persistclose)
document.cookie="remainclosed=0"
document.getElementById(IdLayer).style.visibility="hidden"
}

function staticbar(IdLayer, horizontalpos, verticalpos, persistclose, startX, startY){
   try {
       barheight = document.getElementById(IdLayer).offsetHeight
       var ns = (navigator.appName.indexOf("Netscape") != -1) || window.opera;
       var d = document;
       function ml(id){
           var el = d.getElementById(id);
           if (!persistclose || persistclose && get_cookie("remainclosed") == "")
               el.style.visibility = "visible"
           if (d.layers)
               el.style = el;
           if (horizontalpos == "fromRight") {
               el.sP = function(x, y){
                   this.style.right = x + "px";
                   this.style.top = y + "px";
               };
           }
           else {
               el.sP = function(x, y){
                   this.style.left = x + "px";
                   this.style.top = y + "px";
               };
           }
           el.x = startX;
           if (verticalpos == "fromtop")
               el.y = startY;
           else {
               el.y = ns ? pageYOffset + innerHeight : iecompattest().scrollTop + iecompattest().clientHeight;
               el.y -= startY;
           }
           return el;
       }
       window.stayTopLeft = function(){
           if (verticalpos == "fromtop") {
               var pY = ns ? pageYOffset : iecompattest().scrollTop;
               ftlObj.y += (pY + startY - ftlObj.y) / 8;
           }
           else {
               var pY = ns ? pageYOffset + innerHeight - barheight : iecompattest().scrollTop + iecompattest().clientHeight - barheight;
               ftlObj.y += (pY - startY - ftlObj.y) / 8;
           }
           ftlObj.sP(ftlObj.x, ftlObj.y);
           setTimeout("stayTopLeft()", 10);
       }
       ftlObj = ml(IdLayer);
       stayTopLeft();
   } catch (e) {
          }
}

if (window.addEventListener)
   window.addEventListener("load", staticbar, false)
else
   if (window.attachEvent)
       window.attachEvent("onload", staticbar)
   else
       if (document.getElementById)
           window.onload = staticbar 
en la web:
Código HTML:
<div style="visibility:visible"  id="barraregistro"><div id="darkcheats">
<div align="right"><a href="#" onclick="closebar('barraregistro','0'); return false">Cerrar</a></div>
</div>
  <table class="floatmensaje" width="100%" border="0">
    <tr>
      <td width="25%" height="80"><img src="images/fload.png"></td>
      <td class="floatmensaje" width="80%">
<center> 
<font color="#FF6600"><b>Ejemplo!!</b></font></center>
<br>
<br>
<br>
</td>
    </tr>
  </table>
</div> 

bueno espero que te sirba saludos!!!!