我正在使用 Yii 构建一些表单。我想完善它在客户端验证中提供的用户体验。 'enableClientValidation'=>true,
添加类错误时,我目前正在使用 CSS 转换来动画显示错误消息的方式。
.new_events .bookingError {
display: block !important;
width: 243px;
position: relative;
margin: -36px 0px 0px 312px;
font-size: 1.3em;
color: red;
z-index: 0;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
.new_events .error .bookingError {
margin: 0px 0px 0px 312px;
}
美好的。但我真的很想在这些动画上支持 IE,我想到的唯一方法是在 YII 添加或切换 .error 之后以某种方式使用回调,然后对其进行 animate({},XX) .. 那里有什么灯吗?