大家好 我是新来的。 我正试图从互联网档案馆了解图书阅读器
文档和下载链接位于以下链接: http://openlibrary.org/dev/docs/bookreader http://raj.blog.archive.org/2011/03/17/how-to-serve-ia-style-books-from-your-own-cluster/
下载源代码后,我查看了BookReaderDemo中名为BookReaderJSSimple.js的JavaScript文件,其中第19行提到了更改检索图像的路径。
但我不知道该怎么做。
假设我的图像标签为1.jpg,然后是2.jpg ....继续
我将如何为Javascript编码
提前致谢
答案 0 :(得分:0)
最好将图像命名为001.jpg,002.jpg等。
然后,在br.getPageURI(第28行)中,您可以为图像设置网址。
例如,如果您的服务器上的图像位于以下URL: http://my.example.com/images/001.jpg
然后将第28行设为:
var url = 'http://my.example.com/images/'+leafStr.replace(re, imgStr) + '.jpg';
希望有所帮助!