动画 *(星号)在高度值中的含义

Whi*_*her 5 animation angular

我窥视 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: '*'}),
                ]))
            ])
Run Code Online (Sandbox Code Playgroud)

*(星号)在高度值中是什么意思?

小智 0

星号表示高度和宽度将在运行时动态计算。