- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我一直在开发带有水平滚动条的移动布局。
但是现在我遇到了一个问题:
页面底部有一个 NAV 元素,没问题,但我想在顶部和底部实现“软木板”的效果,并带有相应的“框架”。再一次,顶部的完全没有问题,但我在试图让底部的保持在底部并高于 NAV 栏时遇到了很多麻烦。
事情是这样的:
基本上,红色方 block 是当前 View /屏幕,导航栏固定在底部,如果我滚动到另一个部分,它会按预期停留在屏幕底部,顶部蓝色条(顶部框架)也是如此).
如何使底部的蓝色条保持在预期/示例的位置?
HTML:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
<title>Ptfolio</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/less.js" type="text/javascript"></script>
<link href='http://fonts.googleapis.com/css?family=Faster+One' rel='stylesheet' type='text/css'>
</head>
<body>
<nav>
<ul>
<li><a href="#splash">Home</a></li>
<li><a href="#next">About</a></li>
<li><a href="#circuit">Circuit</a></li>
</ul>
</nav>
<div id="wrapper">
<section id="splash">
<header>About Me</header>
<div>
Lorem ipsum just testing things
</div>
</section>
<section id="next">
<div id="frame-top">
<header>Portfolio</header>
<div id="content"> </div>
</div>
<div id="frame-bottom"> </div>
</section>
<section id="circuit">
<header>Contact</header>
<div class="main">
</div>
</section>
</div> <!-- wrapper -->
<script type="text/javascript" src="cordova-2.3.0.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
</script>
</body>
</html>
和CSS:
/* --Meyerweb */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* --Meyerweb */
html, body {
height: 100%;
overflow-x: auto;
}
#wrapper {
display: table;
width: 350%;
height: 100%;
-webkit-box-sizing: border-box;
padding-bottom: 3em;
position: relative;
}
#wrapper > section {
display: table-cell;
height: 100%;
width: 25%;
}
header {
min-height: 2em;
font-size: 2em;
}
section#splash {
background: url("../img/bg_grey.png") repeat;
}
section#splash > header {
font-family: 'Faster One', cursive;
}
section#next {
background: url("../img/cork.jpg") repeat;
z-index: 1;
padding-bottom: 3.938em;
}
#frame-top {
background: url("../img/frame.png") repeat-x;
background-position: top;
z-index: 3;
width: 100%;
padding-top: 1em;
}
#frame-bottom {
background: url("../img/frame.png") repeat-x;
height: 16px;
background-position: top;
z-index: 4;
}
#content {
height: 100%;
z-index: 2;
}
section#circuit {
background: url("../img/circuit-tile-02.png") repeat;
}
.st-scroll {
top: 0;
left: 0;
transition: all 0.6s ease-in-out;
/* Let's enforce some hardware acceleration */
-webkit-transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
}
nav {
bottom: 0;
position: absolute;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.3, #303030),
color-stop(0.5, #212121),
color-stop(0.7, #575657)
);
height: 3em;
width: 100%;
z-index: 99;
}
nav ul {
width: 50%;
height: 100%;
color: #FFF;
margin-right: auto;
margin-left: auto;
}
nav ul li{
width: 25%;
height: 100%;
display: inline-block;
}
我已经尝试了所有方法,包括边距、填充、高度和最小高度,但无法达到预期的效果。谁能指出我做错了什么?
编辑:当前页面的屏幕截图: Chrome -
Safari -
最佳答案
如果我没看错,问题是背景卡在元素的顶部而不是底部?
将 background-position: bottom;
添加到该元素的样式中。
html, body {
height: 100%;
overflow: hidden;
}
body {
overflow-x: auto;
/* allows that horizontal scrolling */
}
#wrapper {
width: 350%;
position: absolute;
top: 0px;
bottom: 0px;
/* ^-- these three lines replace height:100%
* and correct some layout quirks */
}
#wrapper > section {
display: inline-block;
height: 100%;
margin-left: -4px;
margin-bottom: -4px;
}
#wrapper > section:first-child {
margin-left: 0px;
/* combined with -4px margin above, eliminates gaps between sections */
}
#wrapper > section, section > header, section > div {
width: 25%;
/* not sure why 25%, since you seem to only
* have three sections... but either way,
* the same value is needed in multiple locations
* so it's pulled out on its own here for
* ease of maintenance */
}
section > header {
position: absolute;
top: 0px;
height: 3em;
}
section > div {
position: absolute;
top: 0px;
height: 100%;
padding-top: 3em;
padding-bottom: 3em;
box-sizing: border-box;
}
section#splash { /*unchanged*/
background: url("../img/bg_grey.png") repeat;
}
section#next { /*unchanged*/
background: url("../img/cork.jpg") repeat;
z-index: 1;
}
section#next > header#frame-top { /*unchanged*/
background: url("../img/frame.png") repeat-x;
background-position: top;
z-index: 3;
}
section#next > div#frame-bottom {
background: url("../img/frame.png") repeat-x;
background-position: bottom;
background-origin: content-box;
z-index: 3;
}
section#circuit { /*unchanged*/
background: url("../img/circuit-tile-02.png") repeat;
}
.st-scroll { /*unchanged*/
top: 0;
left: 0;
transition: all 0.6s ease-in-out;
/* Let's enforce some hardware acceleration */
-webkit-transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
}
nav {
bottom: 0;
left: 0;
position: fixed;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.3, #303030),
color-stop(0.5, #212121),
color-stop(0.7, #575657)
);
background: linear-gradient(to top, #303030 30%, #212121 50%, #575657 70%);
/* ^-- for non-webkit */
height: 3em;
width: 100%;
z-index: 5;
}
nav ul { /*unchanged*/
width: 50%;
height: 100%;
color: #FFF;
margin-right: auto;
margin-left: auto;
}
nav ul li{ /*unchanged*/
width: 25%;
height: 100%;
display: inline-block;
}
关于html - 使 div 固定在另一个 div 之上的底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14285034/
我正在尝试实现 3 列固定-流体-固定布局。此外,布局的高度必须占据整个屏幕,使其看起来像从上到下的 3 个实心列。 总结: Left-column: fixed-width Center-col
我在网上搜索过,似乎找不到一个干净、简单、所有浏览器都友好的 3 列布局。 我希望有 3 列布局,左列固定为 200px,右列固定为 200px,中间列为剩余宽度,但最小宽度为 600px。所以整体最
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 8 年前。 Improve this q
我正在使用一些音频指纹技术来标记长录音中的歌曲。例如,在广播节目中的记录。指纹机制工作正常,但我在归一化(或下采样)方面遇到问题。 在这里您可以看到两首相同的歌曲,但波形不同。我知道我应该进行一些直流
为什么使用cout调用setprecision和fixed以及其他iomanip函数不像例如name.find('')plz这样的字符串函数 最佳答案 它们允许您以以下方式链接操作: cout <<
我正在尝试创建一个侧边栏,当用户向下滚动页面时,该侧边栏会跟随用户,并且我设法使用以下代码实现了效果: 标记 Javas
我正在尝试设置一些性能分析以及影响缓冲策略的运行时决策。我的应用程序收到一个指向由库(CUDA 或 OpenCL)分配的缓冲区的指针。 如何测试内存区域是否被页面锁定? 据我所知,POSIX 给了我们
我正在用 C# 编写一个 B+ 树实现,我为我的应用程序选择的树实现有一个非常特定的结构,它是缓存敏感的。为了实现这些属性,它对树节点有严格的布局策略。 我想要的只是使用 C# 的 fixed 来表达
我试图通过将 fragment 注入(inject)容器来在每个屏幕的底部放置一个广告 View 。通过使用 LinearLayout,我可以将 adview 置于操作栏下方的顶部。我已经尝试了 Re
我正在尝试创建一个导航稍微复杂的网站。我已经让导航看起来像我想要的初始加载,但现在我试图让它粘性导航到滚动顶部。我已经能够在导航栏到达顶部时创建一个类,但无法使其粘滞。每次我添加一个位置时,它都会跳回
首先,我正在寻找一个纯 CSS 解决方案。我可以使用 JavaScript 非常轻松地做到这一点,所以不要费心给我提示如何在 JS 中做到这一点。 我有一个包含 3 个容器的网页。其中 2 个是固定的
我猜这里有一种 super 特例。 我正在处理许多包含。现在我正在一个包含的内容文件中编码。我需要一个灯箱,它有一个 20% 的黑色背景覆盖整个页面,包括本身固定的标题,并在先前的 PHP 文件中设置
我正在尝试制作一个包含两个“固定”侧边栏图像和一个“固定”标题图像的页面。由于标题是固定的(距顶部 0 到 10%)。我不希望页眉图像与页面上的任何文本重叠。我尝试将段落标记定位为“相对”,并将其设置
我遇到了一个(水平)居中固定位置元素的解决方案,如下所示: element { width: 200px; position: fixed; left: 0; righ
我试图让我的网站主体具有固定的高度(我想!)。 无论如何,站点正文只是白色,边框大小为 1。基本上,正文的大小取决于其中的内容,例如,随着添加更多内容,它会自动调整大小。 我想要的是垂直滚动条,这样主
是否可以在 css 中创建 master-detail-states 布局? 我需要 3 个占位符: +---------------+-------+ | A | B
我的问题是,我是否必须在每个 Get/Post 请求之前单独请求检查 SSL Pinning OkHttpClient client = new OkHttpClient.Builder().cert
假设我有一个具有 N 个节点的常量(一旦构建就不会改变)平衡树,每个内部节点都有 p 个子节点。显然,访问节点的最坏情况是 logp(N)。但是访问 r 个节点的摊销成本呢?如果我们按升序访问它们(有
我知道会话固定是用php破解网站的方法。 会话固定是一种允许攻击者劫持有效用户会话的攻击 session fixation 但我不知道这可以防止我的项目中出现此问题。 是描述解决方案的方式或样本。 最
我在 jquery 砖石布局内有一个导航元素,我想将其修复到特定位置,比如右上角。是否可以这样做,以便所有其他元素都位于它周围? 诸如前置导航之类的东西.. 这是我的代码:http://jsfiddl
我是一名优秀的程序员,十分优秀!