我正在使用 GWT 并尝试使用 animation.css 应用 slideUp、slideDown 等过渡效果
我在html文件中链接了animation.css,例如,
<link rel="stylesheet" href="css/animate.css">
还包括一个脚本,
<script type="text/javascript src="http://code.jquery.com/jquery-latest.min.js"></script>
我已将此 animation.css 类直接应用到我的面板或小部件中,
myPanel.addStyleName("slideInDown");
其中“slideInDown”是animation.css 中的类名,但效果并未应用于该myPanel。有人可以帮助解决上述情况下的问题吗?