2012-10-24 21 views
0

我想制作一个始终适合屏幕100%并与中心对齐的滑块,无论分辨率如何。我想用缩放属性来完成它,并通过Javascript进行更改。CSS缩放属性在FF中的行为不同

到目前为止,我这个编码

CSS:

#wrapper-slider{position:absolute;width:100%;height:100%;top:0;left:0;z-index:7;display:block; -moz-transform: scale(0.3); zoom:30%; -moz-transform-origin:0 0;}  
#container-slider {background:url('http://i48.tinypic.com/znpwm0.jpg') no-repeat; width:967px; height:800px; margin: 0 auto; text-align:center; display: block; position: relative;}  
#wrapper-slider .img {position:absolute;display:black;z-index:8;height:486px;width:758px; padding-left: 101px; padding-top: 94px; margin:0 auto; text-align: center;} 
#wrapper-slider .img img {max-height: 487px; max-width:758px; margin:0 auto; display: block;} 
#container-slider p {position: absolute; z-index: 20; color:#000000;} 
#container-slider strong { line-height: 21px;} 
#container-slider .add-to-basket {left:109px; bottom:24px;} 
#container-slider .add-to-basket a {display: block; width:142px; height:36px; font-size:14px; font-weight:bold; text-align:center; color: black;line-height: 34px;} 
#container-slider .description {right: 112px; bottom:17px; width: 361px; height:76px; text-align:center; font-size:15px;} 
#container-slider .details {right:492px; bottom:17px; width:188px; height:76px; text-align:center; font-size:15px;} 
#container-slider .price {left:109px; bottom:72px; width:142px; text-align:center; font-size:24px; color: #FF6C00;} 
#container-slider .left{left:395px;} 
#container-slider .right{right:401px;} 
#container-slider .arrow{width:80px; height: 80px; display:block; bottom:120px; position:absolute;z-index:10; text-indent: -10000000px;} 
#container-slider .close{width:70px; height: 70px; display:block; top:25px; right:40px; position:absolute;z-index:10; text-indent: -10000000px;} 
#container-black{position:absolute;width:100%;height:100%;top:0;left:0;background:#000;z-index:6;}​ 

HTML:

<div id="wrapper-slider"> 
    <div id="container-slider"> 
     <a class="close" href="#" title="Zamknij podgląd">close</a> 

     <div class="img"> 
      <img class="main" src="http://asset0.cbsistatic.com/cnwk.1d/i/tim/2012/08/15/35414204_620x433.jpg"/> 
     </div> 

     <a class="arrow left" title="Poprzedni produkt" href="#">Left</a> 
     <a class="arrow right" title="Następny produkt" href="#">Right</a> 

     <p class="price">390.00 PLN</p> 
     <p class="add-to-basket"><a href="#">Dodaj do koszyka</a></p> 

     <p class="details"> 
      <strong>Wymiary:</strong><br> 
      100 x 50 cm<br> 
      <strong>Technika:</strong><br> 
      Rysunek 
     </p> 

     <p class="description" title="Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.  "> 
      <strong>Opis:</strong><br> 
      Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy t...   
     </p>  
    </div> 

</div> 
<div id="container-black"></div> 
​ 

此代码工作在jsfiddle.net:http://jsfiddle.net/MjmDT/1/

它工作在铬完美,但在FF和IE中,它与左侧对齐。我不知道如何解决它。

+0

你使用的是jquery 1.7 –

+1

我一直以为'zoom'只是为了修复IE浏览器动作时的东西。 – techfoobar

+0

@NullPointer:在这个例子中,我不使用jquery。你问来干什么? @techfoobar:但是'缩放'工作在铬。在FF我使用不同的属性。问题在于它以奇怪的方式与左侧对齐。 – mario199

回答

0

没有名为zoom的CSS属性。这是CSS的专有MS IE扩展(如hasLayout标志)。

此外,Firefox允许设置放大的happ3ens:整个页面应放大,包括任何图像(默认为任何当前的浏览器版本)。或者在缩放页面时只应增加文字大小。检查您的Fx设置:“查看” - >“缩放”(或类似的,我已安装德语版本)。

+0

但是可以用css或js来扩展整个网站吗?其实它的作品,但我不知道为什么在ff,即有这种奇怪的对齐左边。 – mario199

相关问题