媒体查询断点之间的动画

时间:2013-05-22 23:11:41

标签: jquery media-queries

在css媒体查询之间制作动画的最佳方法是什么?

是CSS3 Transitions还是jquery?

CSS

@media handheld, only screen and (max-width: 1024px) {
h1 {
font-size: 30px;
}
}
@media handheld, only screen and (max-width: 768px) {
h1 {
font-size: 10px;
}
}

1 个答案:

答案 0 :(得分:4)

我会说使用过渡:

h1 {
    -moz-transition   : font-size 2s;
    -webkit-transition: font-size 2s;
    -o-transition     : font-size 2s;
    transition        : font-size 2s;
}

@media handheld, only screen and (max-width: 1024px) {
    h1 {
        font-size: 30px;
    }
}
@media handheld, only screen and (max-width: 768px) {
    h1 {
        font-size: 10px;
    }
}