如何在Mobile View中显示总屏幕上的sideTab?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Mobile View中显示总屏幕上的sideTab?相关的知识,希望对你有一定的参考价值。

我的sideTab有问题。

单击图标时,选项卡将显示在屏幕右侧。

因此,当屏幕进入移动尺寸时,我希望在所有屏幕上看到sideBar。

html

<div class="d-block sideTabResp">
    /***/
</div>

CSS

.sideTabResp {
    height:100%;
    position: fixed;
    top: 0;
    right: calc(-100vw);
    width: calc(30vw);
    background-color: rgba(255, 255, 255, 0.9);
    transition: right ease 0.5s;
    padding-top: 25px;
    overflow-x: hidden;
    overflow-y: auto;
}

我试过像@mediaquery这样的东西,但我无法做到。

有什么建议?

答案

欢迎来到SO。

您知道问题的答案,您只需要获得更多信息。去检查W3Schools,然后了解Bootstrap如何管理网格和媒体查询

尝试将其添加到样式表中

@media screen and (max-width: 768px) {
    .sideTabResp {
        width: 100%;
        right: 0;
        left: 0;
    }
}

以上是关于如何在Mobile View中显示总屏幕上的sideTab?的主要内容,如果未能解决你的问题,请参考以下文章

使用 jquery mobile 调整图像大小以适应移动设备上的屏幕

Accelerated Mobile Page 和表格突出显示在屏幕上

在 Windows Mobile 7 上防止文本框焦点上的屏幕缩放

Windows mobile BIP1300 IC读卡器

如何强制视图保持焦点?

在 Kendo UI Mobile 的显示事件中更改标题?