在我的角度应用程序中,我在导航栏中有一个配置文件按钮(用户的名字首字母)。当用户悬停时,会出现一个子菜单(使用CSS:hover)。在移动设备上,当用户点击个人资料按钮时,不会发生任何事情。
我最初以为:hover CSS状态是一个问题(显然您不能在移动设备上进行悬停),但是我的其他下拉菜单在移动状态下都处于悬停状态。第二个奇怪的事情是,当我检查并将设置更改为移动设备时,在Chrome浏览器(台式机)中可以运行,但是在实际手机的实时版本上什么也没发生。我很困惑为什么会发生这种情况,我认为这与它在nabber中有关,因为正如我所说的:hover似乎在其他地方都可以使用。
=1*trim(right(index(ImporthtML("https://www.marketwatch.com/investing/stock/lmha","list",14),13,1),13))
.profileLeft {
display: inline-block;
margin-left: 10px;
padding-top: 2px;
float: right;
}
#navOne {
padding-left: 0px;
}
.navbar-collapse.collapse {
display: none !important;
}
.profileBubble {
margin-top: 10px;
width: 30px;
height: 30px;
background-color: rgb(0, 172, 168, 0.8);
/* border: 2px solid #3e3f3a; */
text-align: center;
background-size: cover;
display: inline-block;
border-radius: 100px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
}
.dropup {
width: 30px;
height: 30px;
display: inline-block;
}
.profileText {
padding-top: 2px;
font-size: 18px;
color: white;
}
.dropup-content {
display: none;
position: absolute;
top: 30px;
right: 10px;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
border-radius: 10px;
}
.dropup-content :hover {
border-radius: 10px;
}
/* Links inside the dropup */
.dropup-content a {
color: black;
padding: 8px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropup links on hover */
.dropup-content a:hover {
background-color: #ddd;
color: #00aca8 !important;
}
/* Show the dropup menu on hover */
.dropup:hover .dropup-content {
display: block;
border-radius: 10px;
}