![]() |
#1 |
Member
![]() Posts: 23
Karma: 10
Join Date: Nov 2015
Device: KPW3 kobo touch
|
How to disable pop-up?
I used the same code in my book, but some are hiperlinks and some are pop-up. I saw the Amazon publishing guidelines, it told me that if you make bi-directional hyperlinks are displayed in a pop-up.
Then,the code in Page A: Code:
<div class="goto"> <a id="test-01" href="../Text/Appendix02_answers.xhtml#answer-01">[see the answer]</a> </div> The code in Page B: Code:
<section epub:type="rearnotes" id="answer-01"> <h3>答 案 一</h3> <ol class="answers"> <li epub:type="rearnote" id="answer-01-01">c。</li> <li epub:type="rearnote" id="answer-01-02">b,如果你选a与d,并非真的全错。</li> <li epub:type="rearnote" id="answer-01-03">a与b。</li> <li epub:type="rearnote" id="answer-01-04">b。</li> <li epub:type="rearnote" id="answer-01-05">c,这一题说b不正确是否太老学究了?如果没有c这个答案,情况是否又不同?</li> <li epub:type="rearnote" id="answer-01-06">b。</li> <li epub:type="rearnote" id="answer-01-07">a与c及d,文中已经提到边沁对他的影响力了。</li> <li epub:type="rearnote" id="answer-01-08">d。</li> <li epub:type="rearnote" id="answer-01-09">a与b可能,c与d是不可能。</li> <li epub:type="rearnote" id="answer-01-10">a、b及d。</li> </ol> </section> Code:
<div class="goto"> <a href="../Text/Appendix02-01.xhtml#test-01">[return]</a> </div> another one is a pop-up: The code in Page C: Code:
<div class="goto"> <a id="test-05" href="../Text/Appendix02_answers.xhtml#answer-05">[see the answer]</a> </div> Code:
<section epub:type="rearnotes" id="answer-05" class="pagebreak"> <h3>答 案 五</h3> <ol class="answers"> <li epub:type="rearnote" id="answer-05-01">否。</li> <li epub:type="rearnote" id="answer-05-02">b。</li> <li epub:type="rearnote" id="answer-05-03">否。事实上,这个说法毫无意义。</li> <li epub:type="rearnote" id="answer-05-04">a。</li> <li epub:type="rearnote" id="answer-05-05">否。</li> <li epub:type="rearnote" id="answer-05-06">否。</li> <li epub:type="rearnote" id="answer-05-07">否。</li> <li epub:type="rearnote" id="answer-05-08">郝胥黎为达尔文辩护。</li> <li epub:type="rearnote" id="answer-05-09">c。</li> <li epub:type="rearnote" id="answer-05-10">d,对达尔文迷来说,这是这个人最迷人之处。</li> </ol> </section> Code:
<div class="goto"> <a href="../Text/Appendix02-02.xhtml#test-05">[return]</a> </div> ![]() I do not konw what make them difference? I want all of them to be hyperlinks. Last edited by yasteora; 05-16-2016 at 05:58 AM. |
![]() |
![]() |
![]() |
#2 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 5,727
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
|
|
![]() |
![]() |
![]() |
#3 | |
Member
![]() Posts: 23
Karma: 10
Join Date: Nov 2015
Device: KPW3 kobo touch
|
Quote:
oh,return to my question.... I do not konw what enable the pop-up on kindle. ![]() And thanks for you reply! Have a nice day! Last edited by yasteora; 05-17-2016 at 01:45 AM. |
|
![]() |
![]() |
![]() |
#4 |
Member
![]() Posts: 23
Karma: 10
Join Date: Nov 2015
Device: KPW3 kobo touch
|
update
I can't disable the pop-up, but I can force to enable the pop-up:
The original code which disable pop-up,and that is I want: Code:
<body>
<section id="answer-07">
<h3>答 案 七</h3>
<ol class="test">
<li epub:type="rearnote" id="answer-07-01">家庭、村落、国家<a epub:type="noteref" class="footnote" href="#footnote-01" id="footnote-01-backlink">[1]</a>。 </li>
<li>.......</li>
.......
</ol>
<aside>
<hr/>
<div epub:type="footnote" id="footnote-01" class="footnote">
<a href="#footnote-01-backlink">[1]</a><span>译注:与“城邦”同一字State。</span>
</div>
</aside>
</section>
<div class="goto">
<a href="../Text/Appendix02-04.xhtml#test-07">[return]</a>
</div>
</body>
The part of change: Code:
<body>
<section>
<h3><a id="answer-07" href="../Text/Appendix02-04.xhtml#test-07"></a>答 案 七</h3>
.....
</section>
But, I want to disable all of them! ![]() |
![]() |
![]() |
![]() |
#5 |
Member
![]() Posts: 23
Karma: 10
Join Date: Nov 2015
Device: KPW3 kobo touch
|
![]()
Hi,guys! After I have tried a few times, I found what affect eisable the inline footnote for kindle:
To be enable pop-up on kindle, need a loop anchor, that means my code should have be all enable pop-up footnote, but something to prevent that works. "something" must be between the loop ancher. I look for the differece is one of them has the footnote in the rearnote, "the nesting footnote". So I make a empty anchor in the code, that works! The code like this: Code:
<body>
<section epub:type="rearnotes" id="answer-01">
<h3><a href="#foolkindle" id="foolkindle"></a>答 案 一</h3>
<ol class="test">
........
</ol>
</section>
<div class="goto">
<a href="../Text/Appendix02-01.xhtml#test-01">[return]</a>
</div>
</body>
Now I want to know how disable pop-up for kepub and how handle the content the pop-up showed... Last edited by yasteora; 05-31-2016 at 02:01 PM. |
![]() |
![]() |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
About pop-up endnotes | roger64 | Conversion | 4 | 01-07-2016 07:15 PM |
pop-up endnotes | roger64 | Calibre | 34 | 11-23-2014 07:46 PM |
Footnote pop-up example | dcmst | ePub | 7 | 09-22-2014 10:33 PM |
Pop-up dictionaries on K4 | rebane | Amazon Kindle | 6 | 04-25-2012 11:25 PM |
Really annoying pop-up ad | RCR | Lounge | 3 | 01-25-2011 06:56 PM |