キンドル電子書籍をサイトに埋め込む方法:How to Embed Kindle eBooks

Amazon lets you embed few sample chapters from the book while in the case of Google Books, you can embed the entire e-book provided it is in public domain or free.  - How to Embed Kindle eBooks in your Website - Digital Inspiration


キンドル電子書籍はサイトにサンプルを埋め込むことができる。コードはJavascriptとiframeの2通り。幅(width)と高さ(height)は好みで調整してね。


Javascript
<div id='Kindle-Reader'></div>
<script type='text/javascript' 
  src='http://kindleweb.s3.amazonaws.com/app/KindleReader-min.js'></script>
<script>KindleReader.LoadSample({
   containerID: 'Kindle-Reader', width: '600', height: '800',
   asin: 'ここにASIN番号',assoctag: 'ここにアソシエートID番号'});
</script>

IFRAME
<iframe height="800" width="600" frameborder="0" src="http://kindleweb.s3.amazonaws.com/app/1.0.11.053.093655/KindleReaderApp.html?asin=ここにASIN番号&assoctag=ここにアソシエートID番号">
</iframe>

直接サンプルに飛べるリンク

http://kindleweb.s3.amazonaws.com/content/ここにASIN番号/gz_sample.html

試しにKindle買わなくてもスマホ版Kindleで読めると噂のワンピースを埋め込んでみよっか…


ほお! アメリカからはブロックされちゃうのね…(追:買えない警告に怯まずcontinue reading samples押したら見れた) 
下は米アマゾン。日本から見れるかな…


[How to Embed Kindle eBooks in your Website - Digital Inspiration]

Comments