gpt4 book ai didi

javascript - 我怎样才能改变turnjs页面的高度

转载 作者:行者123 更新时间:2023-11-30 12:12:15 24 4
gpt4 key购买 nike

我在这里使用 turn js 翻转库,我想更改 turnjs 页面的高度。这里是使用客户端高度计算页面高度。现在我需要将页面的高度更改为 700 像素。我该怎么做?

<script type='text/javascript'>
(function () {
'use strict';
var module = {
ratio: 1.38,
init: function (id) {
var me = this;
if (document.addEventListener) {
this.el = document.getElementById(id);
this.resize();
this.plugins();
window.addEventListener('resize', function (e) {
var size = me.resize();
$(me.el).turn('size', size.width, size.height);
});
}
},
resize: function () {
this.el.style.width = '';
this.el.style.height = '';
var width = this.el.clientWidth,
height = Math.round(width / this.ratio),
padded = Math.round(document.body.clientHeight * 0.9);
if (height > padded) {
height = padded;
width = Math.round(height * this.ratio);
}
this.el.style.width = width + 'px';
this.el.style.height = height + 'px';
return {
width: width,
height: height
};
},
plugins: function () {
$(this.el).turn({
gradients: true,
acceleration: true
});
document.body.className = 'hide-overflow';
}
};
module.init('book');
}());
</script>

html:

<div class="t">
<div class="tc rel">
<div class="book" id="book">
<div class="page page1">
<img src="image600x650.png">
</div>
</div>
</div>
</div>

最佳答案

您拥有关于 website 的所有信息.你必须做这样的事情:

$("flipbook").height(700);

关于javascript - 我怎样才能改变turnjs页面的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33431969/

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