在iframe中嵌入
https://www.desmos.com/calculator?lang=zh-CN
此网站时,电脑端页面正常,手机端无法横向滑动及缩放
尝试过网上的一些代码,对于个别网站可以出现横向滚动条,功能正常,但此网站不可
<div class="container">
<iframe src="https://www.desmos.com/calculator/vgfqbejegx?lang=zh-CN" scrolling="yes" class="container" ></iframe>
</div>
<style scoped>
.container{
height:500px;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.frame{
width:100%;
height:100%;
}