Popover 在 iPhone 上没有箭头可能是由于以下几个原因:
以下是一个简单的示例代码,展示了如何在 iPhone 上显示带有箭头的 Popover:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Popover Example</title>
<style>
.popover {
position: relative;
display: none;
padding: 10px;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 5px;
}
.popover::before {
content: '';
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
border-width: 5px;
border-style: solid;
border-color: transparent transparent #fff transparent;
}
</style>
</head>
<body>
<button onclick="showPopover()">Show Popover</button>
<div class="popover">
This is a popover with an arrow.
</div>
<script>
function showPopover() {
const popover = document.querySelector('.popover');
popover.style.display = 'block';
}
</script>
</body>
</html>
通过以上分析和解决方案,你应该能够解决 Popover 在 iPhone 上没有箭头的问题。
领取专属 10元无门槛券
手把手带您无忧上云