簡體   English   中英

定價表調整大小感覺就像使用html5和/或css的mac基座

[英]Pricing table resize feel like the mac dock using html5 and/or css

我的想法是,我已經開始構建一個定價表,理想情況下,該定價表將與Mac OSX擴展塢的放大倍感(超級流暢)非常相似,但是我想知道是否有進行此類操作的最佳實踐。

為了讓您大致了解我們的起點,這是到目前為止我所擁有的: http : //tmp.responsibid.com/#features

任何幫助或指向正確的資源將是極好的!

您需要在懸停時添加此CSS,它將正常工作:

-webkit-transform: scale(2);
-moz-transform: scale(2);
-o-transform: scale(2);
-ms-transform: scale(2);
transform: scale(2);

還添加CSS過渡:

-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;

盡管您必須將其放入容器中,然后將其垂直對齊,然后將隱藏的溢出物添加到容器中,並為其設置一個設定的高度,因為它不僅可以按您希望的寬度方式進行擴展,還可以按長度方式

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM