我有一个下拉菜单,通过增加高度来设置下拉菜单,但是它从顶部到底部。是否有可能从底部到顶部?
这是我的代码:
animate({height:'show',opacity:'show'}, ddsmoothmenu.transition.overtime)
感谢。
答案 0 :(得分:2)
将动画的ul设置为position: relative
(或绝对值)和bottom: 0px
(或者px效果最佳)。同时删除top: -88px
。
答案 1 :(得分:0)
我认为解决这个问题的方法是绝对定位元素bottom
。所以只需将其包装在position: relative
元素中,然后使用bottom:让它显示在您想要的位置。