在手机上显示内容并隐藏在桌面上[重复]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在手机上显示内容并隐藏在桌面上[重复]相关的知识,希望对你有一定的参考价值。

这个问题在这里已有答案:

我有这个代码在网站上实现什么应用程序按钮,我如何才能在移动视图中显示它并将其隐藏在桌面视图上?

<script type="text/javascript">
    (function () {
        var options = {
            whatsapp: "+39 ", // WhatsApp number
            call_to_action: "contacts", // Call to action
            position: "right", // Position may be 'right' or 'left'
        };
        var proto = document.location.protocol, host = "whatshelp.io", url = proto + "//static." + host;
        var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = url + '/widget-send-button/js/init.js';
        s.onload = function () { WhWidgetSendButton.init(host, proto, options); };
        var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x);
    })();
</script>
答案

你只能使用css与media-query

例如,当浏览器窗口宽度为600px或更小时,隐藏按钮:

@media only screen and (max-width: 600px) {
    button{
        display: none;
    }
}

以上是关于在手机上显示内容并隐藏在桌面上[重复]的主要内容,如果未能解决你的问题,请参考以下文章

如何在手机上显示桌面视图? [复制]

使用引导程序在手机上每行显示 2 个产品,在桌面上每行显示 4 个产品

检测是不是在手机上运行[重复]

ReactStrap:下拉项目在手机上显示为透明

如何在手机上编程并运行

我们如何从 ListView 中进行多选?我看到它可以在桌面上运行,但不能在手机上运行