对Googlematerial设计要遵循的一些规则存疑
Doubts on some Rules to be followed for Google material design
我正在尝试使用 material 网络应用程序的设计理念。在 Google 文档中,他们提到了 dp 中的一些间距规则。
上图中的测量值以 dp 和 sp 为单位。
(Check here) 在该文档中向下滚动到字段和标签间距测量的规格部分。为了遵循这些测量结果,我无法弄清楚如何从 dp 计算 px 值。 google 文档中提到的 dp 公式是
dp = (width in pixels * 160) / screen density
要使用此公式,我需要屏幕密度。
所以这是问题。
如何计算 Web 应用程序的屏幕密度?
来自Material Design Guildelines:
When writing CSS, use px wherever dp or sp is stated. Dp only needs to be used in developing for Android.
这意味着:您不需要找出屏幕密度(无论如何都不容易做到)。
我正在尝试使用 material 网络应用程序的设计理念。在 Google 文档中,他们提到了 dp 中的一些间距规则。
上图中的测量值以 dp 和 sp 为单位。 (Check here) 在该文档中向下滚动到字段和标签间距测量的规格部分。为了遵循这些测量结果,我无法弄清楚如何从 dp 计算 px 值。 google 文档中提到的 dp 公式是
dp = (width in pixels * 160) / screen density
要使用此公式,我需要屏幕密度。 所以这是问题。
如何计算 Web 应用程序的屏幕密度?
来自Material Design Guildelines:
When writing CSS, use px wherever dp or sp is stated. Dp only needs to be used in developing for Android.
这意味着:您不需要找出屏幕密度(无论如何都不容易做到)。