【发布时间】:2018-03-08 22:01:02
【问题描述】:
我正在尝试了解 jQTouch 实现的 CSS 效果。 http://www.jqtouch.com/
它有一些 CSS 定义,其中包含 body > * 之类的语法
body > * {
-webkit-backface-visibility: hidden;
-webkit-box-sizing: border-box;
display: none;
position: absolute;
left: 0;
width: 100%;
-webkit-transform: translate3d(0,0,0) rotate(0) scale(1);
min-height: 420px !important;
}
body.fullscreen > * {
min-height: 460px !important;
}
body.fullscreen.black-translucent > * {
min-height: 480px !important;
}
body.landscape > * {
min-height: 320px;
}
body > .current {
display: block !important;
}
我已经搜索了一段时间,但找不到任何提示。谁能给我解释一下?
它是否暗示动画?
【问题讨论】:
-
承认它不应该是CW,@Tor为什么浪费?
标签: css css-selectors