我正在玩角2,我想打開一個菜單,在移動設備上以及在PC上的2,3選項。如何打開一個長按住或右鍵單擊Angular2的菜單
我需要的是,當我長保持或div
與class container
上面點擊右鍵,我希望有一個菜單中打開這樣的 - 如下
HTML代碼:
<div class="container" id="main-wrapper" >
<section class="intro">
<div class="content" >
<h1 [contentEditable]="contentEditable" >You can create full screen sections without javascript.</h1>
<p [contentEditable]="contentEditable">The height is set to 90vh, that means 90% height.</p>
</div>
</section>
</div>
explore.ts
rightClickMenu(){
// What should i write in this function to get a menu as explained.
}
我應該在哪裏調用這個菜單,請指導。
檢查此[Plunkr](http://plnkr.co/edit/3klGukkbDBCOaBYqcGmr?p=preview)。 –