使用css3隐藏数据属性

时间:2014-03-28 16:49:29

标签: jquery css3

在我的网站上工作,我添加了一些功能,例如Snap.js提供的功能(添加了一个横向菜单,比如facebook一个)。

使用自适应样式时出现问题。

我可以使用以下值隐藏dragg选项:<data-snap-ignore="true">。但我不知道如何用dispaly:none在桌面分辨率上隐藏它(以避免鼠标问题),并允许它以低分辨率(如平板电脑和移动设备)重新使用。

有关于如何使用CSS3隐藏它的任何线索吗?

1 个答案:

答案 0 :(得分:0)

标准设备的媒体查询

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
/* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
/* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
/* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
/* Styles */
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
/* Styles */
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}