DustinChu Blog

vaadin 響應式即時看板

撈取公司MES的生產資料 將資料圖表化 顯示即時看板
要花時間想前端又要做後端 好累阿……

網頁端

手機端

這邊CSS使用 width-range 來去監聽寬度的變化 來去改變 panel的 width height

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.responsive {
&[width-range~="0-300px"] {
.panel{
margin-top:10px;
width: 100%!important;
height: 100%;
}
}
&[width-range~="301-800px"] {
.panel{
margin-top:10px;
width: 100%!important;
height: 100%;
}
}
&[width-range~="801px-"] {
.panel{
margin-top:10px;
margin-left:10px;
width: 49%!important;
height: 330px;
}
}
}

文章標題:vaadin 響應式即時看板

文章作者:Dustinchu

發布時間:2017年12月05日 - 01:12

最後更新:2018年05月03日 - 21:05

原始連結:https://dustinchu.github.io/2017/12/05/vaadin-響應式即時看板/

許可協議: 屬名-非商業性使用-禁止編譯 4.0 國際 轉載請保留原文連結及作者。

相關文章: