vue.js實作遮罩層的方法:【div.popContainer {position: fixed;top: 0;left: 0;right: 0;bottom: 0;background: rgba(0, 0, 0 , 0.3);}】。
本文操作環境:windows10系統、vue.js 2.9、thinkpad t480電腦。
vue實作簡單的遮罩層效果:
具體程式碼如下:
<div class='popContainer'></div> div.popContainer { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.3); }
推薦學習:php訓練
以上是vue.js如何實作遮罩層的詳細內容。更多資訊請關注PHP中文網其他相關文章!