1
A
回答
1
組件不過是一個HTML元素。你必須使用css
讓它們重疊。要定位組件本身,你必須使用:host
選擇:
@Component({
selector: 'app',
template: `
<a-component></a-component>
<b-component></b-component>
`
})
export class AppComponent{}
一個分量
@Component({
selector: 'a-component',
template: 'I am A',
style: [`
:host {
position: fixed,
top: 0,
left: 0
}
`]
})
export class AComponent{}
此組件將重疊的其他組件:
B-組件
@Component({
selector: 'b-component',
template: 'I am B',
style: [`
:host {
position: fixed,
top: 0,
left: 0
}
`]
})
export class BComponent{}
相關問題
- 1. 重疊DIV彼此
- 2. CCSprite彼此重疊
- 3. CSS:Flex項目彼此重疊
- 4. UIImageView圖像彼此重疊
- 5. 水平divs彼此重疊?
- 6. 彼此重疊部分
- 7. 彼此重疊的片段
- 8. 防止TextBlocks彼此重疊
- 9. 自舉行彼此重疊
- 10. 電子郵件通訊彼此重疊
- 11. 切換2個UIPickerview的組件彼此
- 12. 堆疊在彼此
- 13. 自舉網格列彼此重疊
- 14. 事業部是彼此重疊
- 15. 彼此重疊的MySQL查詢
- 16. 砌體圖像彼此重疊
- 17. Android動態RelativeLayout彼此重疊
- 18. XLabels彼此重疊在achartengite Android中4.3
- 19. 阻止兩個UILabel彼此重疊
- 20. 腳本重疊/取消彼此?
- 21. 我的容器保持彼此重疊
- 22. 如何讓2個字符在Android EditText中彼此重疊
- 23. 水平堆疊軸彼此
- 24. 圖像疊加在彼此
- 25. achartengine堆疊條形圖的X和Y圖彼此重疊?
- 26. 如何使用角度2將組件注入到組件2
- 27. 如何移動多條線路,使它們彼此不重疊
- 28. 重用角度組件
- 29. 2剛體彼此之間
- 30. 檢查2列表彼此
解決了它,謝謝! –