gpt4 book ai didi

html - 当我无法使用 css 时,如何设置设备特定的视口(viewport)宽度?

转载 作者:行者123 更新时间:2023-11-28 07:45:18 25 4
gpt4 key购买 nike

我在我的网站上使用 360 度产品旋转,我希望旋转为浏览器的 50%,然后在低于 1000 像素时旋转为 100%。但是我无法使用媒体查询,因为 HTMl 中使用了样式/规则。像这样;

<div id="Frame" style="width:100vw;  margin:auto; background-repeat:no-repeat; background-position:center;"></div>

<script type="text/javascript">
$('#Frame').animate360({
centerInWindow:false,
xmlPath: './360-light-1/',
objPath: './360-light-1/Images/',
iconPath: './360-light-1/HTML5/Images/'
});
</script>

我试过在 css 中使用#Frame 标签,但没有成功。有什么办法可以在 html 中设置断点吗?

最佳答案

可以使用@media 查询

在页面底部包含以下脚本:

<script>

function initialiseFrame() {
var frame = document.getElementById('frame');
frame.removeAttribute('style');
}

window.addEventListener('load',initialiseFrame,false);

</script>

这将从 #frame 中删除内联样式,以便随后不会覆盖任何 @media query 样式。

关于html - 当我无法使用 css 时,如何设置设备特定的视口(viewport)宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30730393/

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