有谁知道如何正确实现 Kindle Fire Silk 浏览器阅读视图的 CSS 类?
Kindle Fire 6.3 更新添加了“阅读视图”:
借助 Silk 上的阅读视图,您感兴趣的内容在阅读优化的单屏视图(即使对于多页文章)中被提升到凌乱之上。整个页面仍然在后台可用,让您可以轻松切换回传统视图以查看页面上的其他有趣功能。
我检查了我的一个站点,它呈现<div style="display:none;">
为阅读视图文章,但我无法找到有关如何将 Silk 浏览器定向到应在阅读视图中显示的部分的详细信息。
代码示例:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en" xml:lang="en">
<head>
<title>Title</title>
</head>
<body>
<div id='content'>
//important article here
</div>
<div id='sidebar'>
//less important menu here
</div>
<div style='display:none;'>
//lightbox HTML here, not important on mobile devices
</div>
</body>
</html>
如果我找到任何文件,我会更新。