我正在尝试使用anular 6中的CSS创建加载程序。我成功实现了加载程序。 我可以使用css属性'pointer-events'禁用鼠标与DOM的交互;但是我不能 避免键盘与DOM交互。如何使用css禁用键盘与DOM交互?纯css是否可能?
这是我的代码:
pointer-events: all;
z-index: 99999;
border: none;
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
cursor: wait;
position: fixed;
background-color: rgba(0, 0, 0, 0.8);
user-select: none;