作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在这里使用 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/
我遇到了以前从未遇到过的问题,甚至谷歌搜索也无济于事。我有来自脚本 TurnJS 官方页面的基本代码,这是我遇到的问题。 Turn.js Page 1 Page 2 Page 3
如何调整 turnjs 的 flipbook 的大小? ,我使用史蒂夫乔布斯样本。 我试试 $("#flipbook").turn("size", 800, 1000); CSS: #flipbook
我不确定这是否已经被讨论过,我尝试搜索问题列表但找不到与之相关的任何内容。 我有大量 HTML 内容需要使用 turn.js 进行绑定(bind)。我遇到的问题是,使用 turn js,我必须将 HT
我是一名优秀的程序员,十分优秀!