Я настроил книгу с использованием изображений, но вверху всегда есть пустое пространство
Это контролируется файлом js, который имеет следующее (экрановый снимок из изображений 1 и 2): < /p>
У меня была та же проблема с дном, и я смог правильно масштабировать его, настраивая высоту до 1130, но не могу избавиться от дополнительного пространства. />
Код: Выделить всё
// Create the BookReader object
function instantiateBookReader(selector, extraOptions) {
selector = selector || '#BookReader';
extraOptions = extraOptions || {};
var options = {
ppi: 100,
data: [
[{
width: 800,
height: 800,
uri: '/assets/images/Chiloe/Lomo.png'
}, ],
[{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/Portada Frente.png'
}, ],
[{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/1.CanaldeChacao.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/2.CerroMirador.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/3.Museo de las Iglesias.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/4.Islotes.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/5.Quemchi.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/6.Aucar.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/7.Dalcahue.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/8.Castro.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/9.Cucao.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/10.Muelle.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/11.Gruta.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/12.Puqueldón.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/13.Chonchi.png'
},
{
width: 800,
height: 1130,
uri: '/assets/images/Chiloe/Portada Trasera.png'
},
]
],
// Book title and the URL used for the book title link
bookTitle: 'Cartografía poética de Chiloé',
// thumbnail is optional, but it is used in the info dialog
thumbnail: '/assets/images/Chiloe/Portada Frente.png',
// Metadata is optional, but it is used in the info dialog
metadata: [{
label: 'Title',
value: 'Cartografía Poética de Chiloé'
},
{
label: 'Author',
value: 'Jairo Manzur'
},
{
label: 'Demo Info',
value: ' Este poemario fue escrito en el 2020 y representa visualmente los diferentes lugares en los que estuve en la isla de Chiloé.'
},
],
// Override the path used to find UI images
imagesBaseURL: '../assets/images/',
ui: 'full', // embed, full (responsive)
el: selector,
};
$.extend(options, extraOptions);
var br = new BookReader(options);
br.init();
}Подробнее здесь: https://stackoverflow.com/questions/796 ... f-image-js