Ir para conteúdo
Fórum Script Brasil

ºBº

Membros
  • Total de itens

    6
  • Registro em

  • Última visita

Posts postados por ºBº

  1. Olha na verdade não está pronto só a metade do problema está resolvido não está transbordando,

    mas ainda falta que ele dessa a linha seguinte quem souber posta ai gostaria de descobrir também.

    No aguardo!!!

    -----------------------------------------------------------------------------------------------------------------

    Uma mente que se abre a uma nova idéia jamais voltará ao seu tamanho original

    <html>
    <head>
    <title>teste</title>
    <style type="text/css">
    #container
      {
       overflow: hidden;
       width: 70px;
       border: 1px solid #bbb;
       background: #ddd;
       padding: 10px;
      }
    #esquerda
     {
    
      text-align:justify; 
     } 
    </style>
    </head>
    <body>
    <div id="container">
       <div id="esquerda">
       xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
       </div>
    </div>
    </body>
    </html>

  2. Amigo não sei se é isso que você quer mas....

    está ai

    obs:Comente se deu certo ou não. =)

    Abrçs !!!

    -----------------------------------------------------------------------------------------------------------------

    <html>
    <head>
    <style  type="text/css">
     .cabecalho_login{
       width: 400px;
       height: 30px;
       line-height: 30px;
       border: 1px solid #BBBDBF;
       font-size:12px; font-weight: bold; color: #000000;
       text-align: center;
       border-radius: 7px 7px 0px 0px; /*bordas arredondadas para quando o CSS3 estiver valendo */
       -webkit-border-radius: 7px 7px 0px 0px; /*bordas arredondadas para Chrome e Safari*/
       -moz-border-radius: 7px 7px 0px 0px; /*bordas arredondadas para Firefox*/
            
       background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#BBBDBF), to(#E5E6E7)); /* background degrade para webkit (Chrome, Safari) */
       background: -moz-linear-gradient(top,#BBBDBF, #E5E6E7); /* background degrade para Firefox */
       filter:  "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#BBBDBF', endColorstr='#E5E6E7')"; /* background degrade para IE */
    }
    
    .box_login{
       width: 400px;
       border: 1px solid #BBBDBF;
       border-radius: 0px 0px 7px 7px; /*bordas arredondadas para quando o CSS3 estiver valendo */
       -webkit-border-radius: 0px 0px 7px 7px; /*bordas arredondadas para Chrome e Safari*/
       -moz-border-radius: 0px 0px 7px 7px; /*bordas arredondadas para Firefox*/
       border-top: none;
       height: 170px;
    }
    
    .box_login table{
       width: 100%;
       background: red;
            
    }
    
    .lbl_txt{
       font-size:12px; font-weight: bold; color: #4F4F4F;
       width: 30%;
       text-align:right;
    }
    
    .input_txt{
       font-size:12px; font-weight: normal; color: #4F4F4F;
       border-radius: 4px 4px 4px 4px; /*bordas arredondadas para quando o CSS3 estiver valendo */
       -webkit-border-radius: 4px 4px 4px 4px; /*bordas arredondadas para Chrome e Safari*/
       -moz-border-radius: 4px 4px 4px 4px; /*bordas arredondadas para Firefox*/
       border: 1px solid #BBBDBF;
       height: 20px;
    
    }
    
    .box_login table .input_txt{
       width: 150px;
    }
    .container{
       position: absolute;
       width: 400px;
       height: 200px;
       top: 50%;
       left: 50%;
       margin:-100px 0 0 -200px;    
    }
    </style>
    </head>
    <body>
    <div class="container">
       <div class="cabecalho_login">Administração do Website</div>
       <div class="box_login" align="center"> <!-- ESTA É A DIV ONDE A TABELA ESTÁ INSERIDA -->
          <table> <!-- ESTA É A TABELA QUE QUERO CENTRALIZAR VERTICALMENTE -->
             <tr>
                <td class="lbl_txt">Usuário:</td>
                <td><input type="text" class="input_txt"></td>
            </tr>
            <tr>
               <td class="lbl_txt">Senha:</td>
               <td><input type="password" class="input_txt"></td>
           </tr>
           <tr>
              <td colspan="2" align="center"><a href="#" class="botao">Login</a></td>
           <tr>
         </table>
       </div>
    </div>
    </body>
    </html>

  3. Não entendi muito o que você quer mas.....

    Está ai o código da pagina

    ---------------------------------------------------------------------------------------------------------------------

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> 
    <title>Fusion Radio Player</title> 
    &lt;script language="JavaScript" type="text/javascript"> 
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
    {
        var version;
        var axo;
        var e;
        // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
        try {
            // version will be set for 7.X or greater players
            axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
            version = axo.GetVariable("$version");
        } catch (e) {
        }
        if (!version)
        {
            try {
                // version will be set for 6.X players only
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                
                // installed player is some revision of 6.0
                // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
                // so we have to be careful. 
                
                // default to the first public version
                version = "WIN 6,0,21,0";
                // throws if AllowScripAccess does not exist (introduced in 6.0r47)        
                axo.AllowScriptAccess = "always";
                // safe to call for 6.0r47 or greater
                version = axo.GetVariable("$version");
            } catch (e) {
            }
        }
        if (!version)
        {
            try {
                // version will be set for 4.X or 5.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                version = axo.GetVariable("$version");
            } catch (e) {
            }
        }
        if (!version)
        {
            try {
                // version will be set for 3.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                version = "WIN 3,0,18,0";
            } catch (e) {
            }
        }
        if (!version)
        {
            try {
                // version will be set for 2.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
                version = "WIN 2,0,0,11";
            } catch (e) {
                version = -1;
            }
        }
        
        return version;
    }
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
        // NS/Opera version >= 3 check for Flash plugin in plugin array
        var flashVer = -1;
        
        if (navigator.plugins != null && navigator.plugins.length > 0) {
            if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
                var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
                var descArray = flashDescription.split(" ");
                var tempArrayMajor = descArray[2].split(".");            
                var versionMajor = tempArrayMajor[0];
                var versionMinor = tempArrayMajor[1];
                var versionRevision = descArray[3];
                if (versionRevision == "") {
                    versionRevision = descArray[4];
                }
                if (versionRevision[0] == "d") {
                    versionRevision = versionRevision.substring(1);
                } else if (versionRevision[0] == "r") {
                    versionRevision = versionRevision.substring(1);
                    if (versionRevision.indexOf("d") > 0) {
                        versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
                    }
                }
                var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
            }
        }
        // MSN/WebTV 2.6 supports Flash 4
        else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
        // WebTV 2.5 supports Flash 3
        else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
        // older WebTV supports Flash 2
        else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
        else if ( isIE && isWin && !isOpera ) {
            flashVer = ControlVersion();
        }    
        return flashVer;
    }
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
    {
        versionStr = GetSwfVer();
        if (versionStr == -1 ) {
            return false;
        } else if (versionStr != 0) {
            if(isIE && isWin && !isOpera) {
                // Given "WIN 2,0,0,11"
                tempArray         = versionStr.split(" ");     // ["WIN", "2,0,0,11"]
                tempString        = tempArray[1];            // "2,0,0,11"
                versionArray      = tempString.split(",");    // ['2', '0', '0', '11']
            } else {
                versionArray      = versionStr.split(".");
            }
            var versionMajor      = versionArray[0];
            var versionMinor      = versionArray[1];
            var versionRevision   = versionArray[2];
                // is the major.revision >= requested major.revision AND the minor version >= requested minor
            if (versionMajor > parseFloat(reqMajorVer)) {
                return true;
            } else if (versionMajor == parseFloat(reqMajorVer)) {
                if (versionMinor > parseFloat(reqMinorVer))
                    return true;
                else if (versionMinor == parseFloat(reqMinorVer)) {
                    if (versionRevision >= parseFloat(reqRevision))
                        return true;
                }
            }
            return false;
        }
    }
    function AC_AddExtension(src, ext)
    {
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?'); 
      else
        return src + ext;
    }
    function AC_Generateobj(objAttrs, params, embedAttrs) 
    { 
      var str = '';
      if (isIE && isWin && !isOpera)
      {
        str += '<object ';
        for (var i in objAttrs)
        {
          str += i + '="' + objAttrs[i] + '" ';
        }
        str += '>';
        for (var i in params)
        {
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        }
        str += '</object>';
      }
      else
      {
        str += '<embed ';
        for (var i in embedAttrs)
        {
          str += i + '="' + embedAttrs[i] + '" ';
        }
        str += '> </embed>';
      }
      document.write(str);
    }
    function AC_FL_RunContent(){
      var ret = 
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
        );
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    }
    function AC_SW_RunContent(){
      var ret = 
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
        );
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    }
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();    
        switch (currArg){    
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":    
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace": 
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
        }
      }
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    }
    // -->
    </script> 
    <style type="text/css"> 
    <!--
    body {
        background-color:#000000;
        margin: 0;
    }
    #adExternal_bigbox
    {
        position:absolute;
        left:0px; //AJUST POSITION ACCORDING TO PLAYER DESIGN
        top:0px; //AJUST POSITION ACCORDING TO PLAYER DESIGN
        width:300px;
        height:250px;
        background-color:#000000;
        display:block;
        z-index: 1000;
    }
    #now_playing
     {
        position:absolute;
        top:250px;
        width:300px;
        height:18px;
        font-size:18px;
        font-family:arial;
        color:#ffffff;
        font-weight:bold;
        z-index:1;
      }
    #title
     {
        position:absolute;
        top:268px;
        left:0px;
        margin-top:5px;
        width:300px;
        height:60px;
        font-size:15px;
        font-family:arial;
        color:#00ccff;
        font-weight:bold;
        z-index:1;
        overflow:hidden;
      }
    #linx
     {
        position:absolute;
        top:328px;
        left:0px;
        margin-top:5px;
        width:300px;
        height:18px;
        font-size:12px;
        font-family:arial;
        color:#ffffff;
        z-index:1;
      }
    a, a:link, a:hover{
        font-family:arial;
        font-weight:bold;
        color:#ffffff;
    
    }
    #flashPlayer 
    {
        position:absolute;
        padding-top:10px;
        left:0px;
        top:346px;
        width:300px; //AJUST SIZE ACCORDING TO PLAYER
        height:50px; //AJUST SIZE ACCORDING TO PLAYER
        display:block;
        z-index: 1;
    }
    -->
    </style> 
    &lt;script type="text/javascript"> 
     var player = null;
     var loadJs = true;
    
    
     function playerReady(obj)
          {
            player = gid(obj.id);
            player.addModelListener('STATE', 'stateMonitor');
          };
    
    
          function stateMonitor(obj)
          {
            if((obj.newstate = 'PLAYING') && (loadJs == true))
            {
              loadJsFile('feed.php?' + (Math.round(1000 * Math.random())));
              loadJs = false;
            }
          };
          function loadJsFile(filename)
          {
            var fileref = document.createElement('script');
            fileref.setAttribute('type', 'text/javascript');
            fileref.setAttribute('src', filename);
    
            if (typeof fileref != 'undefined')
            {
              document.getElementsByTagName('head')[0].appendChild(fileref);
            }
          };
    
          setInterval("loadJsFile('feed.php?' + (Math.round(1000 * Math.random())))", 3000);
    
    
          function gid(element)
          {
            return document.getElementById(element);
          };
          
    function hideExternalAd()
        {
            var bb = document.getElementById('adExternal_bigbox');
            if (bb)
            {
                bb.innerHTML         = "";
                bb.style.display     = "none";
                bb.style.zIndex     = "-1";
            }
        }
    function loadPrimaryBanner(adurl)
    {
        if ('undefined' == typeof(document.getElementById)) return;
        var inner = '<iframe src="' + adurl + '" width="300" height="250"'
        + ' scrolling="no" frameborder="0" marginheight="0" marginwidth="0"'
        + ' style="margin: 0; padding: 0;" allowtransparency="true"> </iframe>';
        var bb = document.getElementById('adExternal_bigbox');
        if (bb)
        {
            bb.innerHTML         = inner;
            bb.style.display     = "block";
            bb.style.zIndex     = "1000";
        }
    }
    
    
    </script> 
    </head> 
    <body> 
    <div id="adExternal_bigbox" style="display:none; z-index:-1"> 
    <iframe src="http://www.yahoo.com" width="300" height="250" scrolling="no" frameborder="0" id="wurl" style="margin: 0; padding: 0;" allowtransparency="true"> </iframe> 
    </div> 
    <iframe scrolling="no" border="0" frameborder="0" width="300" height="250" src="http://placements.fusionradio.fm/playerA1.php"> 
            Your browser does not support inline frames or is currently configured not to display inline frames.</iframe> 
    <div id="now_playing">Now Playing</div> 
    <div id="title">Loading ...</div> 
    <div id="linx"> 
    <a href="http://fusionradio.fm/onair/nowplaying" target="new"> last played songs</a> 
    <a href="http://twitter.com/home?status=I like this song playing on @fusionchicago: '.$song[0].' listen @ http://www.fusionradio.fm" target="new"> tweet this</a> 
    <a href="pickitmailer.php"> pick-it</a> 
    <a href="pickitmailer.php">kick-it </a> 
    </div> 
    <div id="flashPlayer"> 
    &lt;script language="JavaScript" type="text/javascript"> 
        AC_FL_RunContent(
            'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
            'width', '300',
            'height', '40',
            'src', 'flash player',
            'quality', 'high',
            'pluginspage', 'http://www.adobe.com/go/getflashplayer',
            'align', 'left',
            'play', 'true',
            'loop', 'true',
            'scale', 'showall',
            'wmode', 'window',
            'devicefont', 'false',
            'id', 'flash player',
            'bgcolor', '#000000',
            'name', 'flash player',
            'menu', 'true',
            'allowFullScreen', 'false',
            'allowScriptAccess','sameDomain',
            'movie', 'flash player',
            'FlashVars', 'Xlink=config.xml',
            'salign', 'l'
            ); //end AC code
    </script> 
    <noscript> 
        <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="300" height="40" id="flash player" align="left">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="allowFullScreen" value="false" />
        <param name=flashvars Value="Xlink=config.xml"/>
        <param name="movie" value="flash player.swf" /><param name="quality" value="high" /><param name="salign" value="l" /><param name="bgcolor" value="#000000 />    <embed src="flash player.swf" flashvars="Xlink=config.xml" quality="high" salign="l" bgcolor="#000000" width="300" height="40" name="flash player" align="left" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
        </object>
    </noscript> 
    <map name="map320"> 
    <area shape="rect" coords="269,6,294,33" href="http://player.fusionradio.fm/console/player/flash/"> 
    <area shape="rect" coords="238,6,265,33" href="http://player.fusionradio.fm/console/player/windows"> 
    <area shape="rect" coords="210,6,236,33" href="http://player.fusionradio.fm/console/player/aac/"> 
    </map> 
    <img style="padding-top:5px;" width=300 height=33 border=0 src="img0.gif" usemap="#map320"> 
    </div> 
    </body> 
    </html>

  4. Olá a todos uma opinião de quem tá começando, tenho 6 meses que comecei a programar e pra falar a vdd foi html que me trouxe, e foi a primeira versão =) hehehe

    nem sabia que existia LP ou LOO ou algo do gênero mesmo hoje conhecendo essa novas tecnologias pra mim html sera um clássico ;)

    abçs a todos !!!

    ---------------------------------------------------------------------------------------------------------------OK

  5. Olá amigos do fórum muito prazer :wacko:

    Bom eu venho aprendendo sobre programação no google,

    espero aprender e ajudar no que eu já aprendi

    meu objetivo participar da comunidade fazer amigos na área

    porque to paixonado com programação (=

    é isso ai vlw!!!

×
×
  • Criar Novo...