gpt4 book ai didi

javascript - 有没有办法知道用户是否使用类似于使用 col-sm 的 flexbox 的小型设备?

转载 作者:太空宇宙 更新时间:2023-11-03 21:03:15 25 4
gpt4 key购买 nike

我想知道是否有办法知道用户是否在使用小型设备。如果用户使用的是小型设备或者他使用的是台式机,我希望我的导航菜单发生变化。我希望它类似于 col-sm

最佳答案

您可以为响应式网站或不同尺寸的设备使用 CSS 媒体查询。您也可以根据移动方向使用 CSS。

<style>

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

/* Your CSS Code for this device size */

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

/* Your CSS Code for this device size */

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

/* Your CSS Code for this device size */

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

/* Your CSS Code for this device size */

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

/* Your CSS Code for this device size */

}

/* According to Mobile Orientation */
@media only screen and (orientation: landscape) {

/* Your CSS Code for this device orientation */

}

</style>

关于javascript - 有没有办法知道用户是否使用类似于使用 col-sm 的 flexbox 的小型设备?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57335804/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com