iBooks epub 中的样式锚
是否可以更改 iBooks epub 中锚点的颜色和其他 CSS 属性?
颜色属性根本没有反应,而我确实在正常和悬停链接状态(点击时激活)上获得了背景颜色变化。当我从 Safari 返回到这本书后, :hover 背景颜色也会保留,直到我点击同一页面上的另一个链接,然后第一个链接会丢失 :hover bg 颜色,第二个链接会获得它。
:visited、:active 或 :focus 不执行任何操作。
我错过了什么吗?
Is it possible to change the color and other CSS properties of anchors in iBooks epubs?
The color property doesn't react at all, while I do get background-color change on normal and hover link state (which activates on tap). The :hover background-color also remains after I come back to the book from Safari, until I tap another link on the same page, then the first one loses :hover bg color and the second one gets it.
:visited, :active or :focus don't do anything.
Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
** 更新 2012.09.12 **
您现在可以在 META-INF 文件夹中的特殊 ibooks 文件“com.apple.ibooks.display-options.xml”中指定选项“specified-fonts” :
这将激活锚点样式,但仅当读者在 iBooks 中选择字体“Original”时才有效。所以你仍然需要对其他字体使用下面的技巧。
** 2012.09.12 更新结束 **
您没有错过任何内容,iBooks 不支持链接样式。
有一种方法可以使用属性-webkit-text-fill-color来解决这个问题。
请注意,它在 Adobe Digital Editions 上不起作用。
这是一个示例:
我从 Twitter 上的#eprdctn 上得到了这个。
** Update 2012.09.12 **
You can now specify the option "specified-fonts" in the special ibooks file "com.apple.ibooks.display-options.xml" located in META-INF folder :
This will activate anchors styling, but only when the reader choose the font "Original" in iBooks. So you still need to use the trick beneath for the other fonts.
** End of update 2012.09.12 **
You're not missing anything, iBooks does not support style on links.
There is a way to get around it with the property -webkit-text-fill-color.
Be aware that it doesn't do anything on Adobe Digital Editions.
Here is a sample :
I got this from twitter on #eprdctn.