我看到ng2-dropdown
我可以看到(ng2-dropdown-menu.ts)
除其他外
transition('hidden => visible', [
animate(150, keyframes([
style({opacity: 0, offset: 0, height: '0', width: '0'}),
style({opacity: 1, offset: 1, height: '*', width: '*'}),
]))
])
*(星号)在高度值中的含义是什么?