【发布时间】:2017-10-18 18:44:31
【问题描述】:
如何让我的图像在桌面设备和移动设备的页面加载时淡入淡出?目前我的代码仅适用于移动设备。
CSS:
#test img {
width: auto;
height: 50px;
position: absolute;
-webkit-animation: fadein 7s;
-moz-animation: fadein 7s;
-ms-animation: fadein 7s;
-o-animation: fadein 7s;
animation: fadein 7s;
}
@media only screen and (max-width: 768px) {
#test img {
width: auto;
height: 20px;
position: absolute;
}
}
【问题讨论】: