- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这是我网站的链接。您将能够从那里查看我所有的代码,但我认为下面的代码是导致我的问题的原因。 dustindowell.com/blog
我正在使用移动浏览器上的响应式网站的媒体查询设计此网站,但我无法弄清楚这一点。它在桌面浏览器上运行良好,但当我使用 Opera、Firefox 或 Chrome 进入手机时,查看“侧边栏”(主要内容帖子下的 aside class="sidePost",带有气泡图像和我的twitter 用户名)它不会像其他内容那样扩展。
我不知道为什么。我用 em 设计了整个网站,看不到任何像素单位。这不是 aside 的问题,因为我已经尝试将它切换到 div,而且我在页面上还有另一个可以完美缩放的 aside。我真的没主意了。
编辑:只是想补充一点,页脚也没有缩放。 我唯一能想到的是谷歌字体会以某种方式影响缩放?我在页面的其他地方有谷歌字体,但它们似乎没有受到影响。
编辑:还有一件事。我正在谈论的文本应该都是明显相同的大小。即使我在 postSidebar 或页脚上设置 font-size:200%,它们仍然无法缩放。
编辑:排除了导致问题的谷歌字体。
编辑:除了 calc 属性在 Android 浏览器上不受支持外,它似乎在那里工作得很好。
编辑:我一直在努力解决这个问题,但我所做的一切似乎都无济于事。导致它无法缩放的并不是页脚或旁边的事实。这不是 It 在段落标记中的事实。它不是在#contentContainer 内部,而是在#content div 外部。我完全迷失了,我几乎确信浏览器以某种方式决定了我的内容是什么,这是唯一应该放大供用户阅读的东西,而且只有几个字长,不值得花时间遵循我为所有文本设置的规则。
我还更新了这个问题并添加了更多代码。
编辑:我知道我正在以这种方式进行编辑。但我有另一个更新。如果我缩放文本 font-size:500%;该站点按比例是正确的,尽管它大了 500 倍。仍然不知道为什么这个比例不对,这让我发疯。
HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Dustin Dowell</title>
<link href='http://fonts.googleapis.com/css?family=Contrail+One' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Crimson+Text' rel='stylesheet' type='text/css'>
<link href="css/stylesheet.css" rel="stylesheet" type="text/css">
<link href="css/faces.css" rel="stylesheet" type="text/css">
<link href="glider/featuredcontentglider.css" rel="stylesheet" type="text/css">
<!-- Media Query needs precedence over all stylesheets -->
<link href="css/mediaQuery.css" rel="stylesheet" type="text/css">
<link href="css/mediaQueryMobile.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="glider/featuredcontentglider.js">
// /***********************************************
// * Featured Content Glider script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
// * Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
// * This notice must stay intact for legal use
// ***********************************************/
</script>
<!--
=================================================================
This site was created by Dustin Dowell, Copyright 2013
Do not copy, modify, or redistribute this design.
=================================================================
-->
</head>
<body>
<div id="displayPercentage">
<ul>
<li>Current Page Scaling: 75% <a href="">What is this?</a></li>
<li>Current Page Scaling: 100% <a href="">What is this?</a></li>
<li>Current Page Scaling: 125% <a href="">What is this?</a></li>
<li>Current Page Scaling: 150% <a href="">What is this?</a></li>
<li>Current Page Scaling: 175% <a href="">What is this?</a></li>
<li>Current Page Scaling: 200% <a href="">What is this?</a></li>
</ul>
</div>
<header>
<div id="headerContent">
<div id="logo"></div>
<div id="headline">
<h1 id="title">Life of Geek</h1>
<h2 id="tagline">Energy Drinks and Microwavable Food</h2>
</div>
<nav>
<a class="current" href="">News</a>
<a href="">Apps</a>
<a href="">Galleries</a>
<a href="">Cool Stuff</a>
</nav>
<div class="Clear"></div>
</div>
</header>
<div id="pageContainer">
<div id="slideShowContainer">
<script type="text/javascript">
featuredcontentglider.init({
gliderid: "glideContainer", //ID of main glider container
contentclass: "glideContent", //Shared CSS class name of each glider content
togglerid: "glideSelect", //ID of toggler container
remotecontent: "", //Get gliding contents from external file on server? "filename" or "" to disable
selected: 0, //Default selected content index (0=1st)
persiststate: false, //Remember last content shown within browser session (true/false)?
speed: 750, //Glide animation duration (in milliseconds)
direction: "rightleft", //set direction of glide: "updown", "downup", "leftright", or "rightleft"
autorotate: true, //Auto rotate contents (true/false)?
autorotateconfig: [6000, 200], //if auto rotate enabled, set [milliseconds_btw_rotations, cycles_before_stopping]
onChange: function(previndex, curindex, $allcontents){ // fires when Glider changes slides
//custom code here
}
})
</script>
<div id="glideSelect" class="glideContentToggler">
<a href="#" class="prev" id="togglerLeft"></a>
<a href="#" class="next" id="togglerRight"></a>
<div class="clear"></div>
</div>
<div id="glideContainer" class="glideContentWrapper">
<div class="glideContent">
<img src="images/glider/slide1.png" alt="">
</div>
<div class="glideContent">
<img src="images/glider/slide1.png" alt="">
</div>
<div class="glideContent">
<img src="images/glider/slide1.png" alt="">
</div>
</div>
</div>
<div id="contentContainer">
<section id="content">
<article class="post">
<h1>The title of this blog post.</h1>
<h2>Posted June 28, 2013</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad m i n im veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in v oluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad m i n im veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in v oluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</article>
<aside class="postSidebar">
<div class="authorImage">
<div class="dustinFace">
<div class="bubble"></div>
</div>
</div>
<div class="postSidebarText">
<p>Dustin Dowell</p>
<p>@dustindowell22</p>
</div>
<div class="clear"></div>
</aside>
<div class="clear"></div>
<article class="post">
<h1>The title of this blog post.</h1>
<h2>Posted June 28, 2013</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</article>
<aside class="postSidebar">
<div class="authorImage">
<div class="dustinFace">
<div class="bubble"></div>
</div>
</div>
<div class="postSidebarText">
<p>Dustin Dowell</p>
<p>@dustindowell22</p>
</div>
<div class="clear"></div>
</aside>
<div class="clear"></div>
</section>
<aside id="sidebar">
<article class="sidePost">
<h1>Sidebar Title</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</article>
</aside>
<div class="clear"></div>
<footer>
<p>Copyright © 2013 Dustin Dowell</p>
</footer>
</div>
</div>
</body>
</html>
移动媒体查询 CSS:
@charset "UTF-8";
/* CSS Document */
/* ////////// Mobile Resolution ////////// */
/* 50px negative gap for good measure */
/* Portrain CSS */
@media only screen
and (orientation: portrait)
{
body{
min-width:48em; /* 768px */
font-size:125%;
}
#displayPercentage{
display:none;
}
/* Header */
header{
height:12em;
}
#headerContent{
width:inherit;
}
#headline{
font-size:75%;
margin-left:21.5em;
}
nav{
float:right;
}
/* Page */
#pageContainer{
width:100%;
}
/* SlideShow */
#slideShowContainer{ /* to complicated to fit in design accurately, also can run slow on some phones */
display:none;
}
/* Content */
#contentContainer{
width:calc(100% - 3em);
padding-top:1.5em; /* cancels out padding, padding should be applied to content and sidebar elments instead */
}
#content{
width:100%;
margin-right:0;
}
/* Post */
.post{
width:100%;
}
/* Post Sidebar */
.postSidebar{
width:100%;
margin-bottom:1.5em;
}
.authorImage{
font-size:50%;
float:left;
margin:0;
}
.postSidebarText{
margin-top:1em;
margin-left:6em;
}
.postSidebar p{
text-align:left;
}
/* Sidebar */
#sidebar{
width:100%;
margin-bottom:1.5em;
}
.sidePost{
width:100%;
margin:0;
}
/* Footer */
footer{
width:100%; /* redundant */
}
}
常规样式表 CSS:
@charset "UTF-8";
/* CSS Document */
*{
margin:0;
padding:0;
}
body{
min-width:70em; /* largest width to prevent horizontal scrolling */
font-size:100%; /* keep in divisors of 25 or rounding will cause breaks, but never below 75% or webkit will break */
line-height:1.5em; /* line height for the entire page */
font-family: 'Crimson Text', serif;
background-image:url(../images/layout/bg.png);
background-size:.5em; /* 8 instead of 16 so it doesn't look blurry on retina */
}
.clear{
clear:both;
}
#displayPercentage{
height:1.5em;
margin-left:.25em;
position:absolute;
top:0;
overflow:hidden;
font-weight:normal;
font-family:'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
color:rgba(191,191,191,1);
}
#displayPercentage a{
margin-left:1em;
}
/* ////////// Links ////////// */
a:link{
color:rgba(128,204,255,1);
text-decoration:none;
}
a:visited{
color:rgba(128,204,255,1);
}
a:hover{
color:rgba(128,204,255,1);
text-decoration:underline;
}
a:active{
color:rgba(128,204,255,1);
}
/* ////////// Header ////////// */
header{
height:12em;
margin-top:3em; /* margin at top of page */
background-image:-webkit-linear-gradient(rgba(51,51,51,1), rgba(26,26,26,1));
background-image: -moz-linear-gradient(rgba(51,51,51,1), rgba(26,26,26,1));
background-image: -o-linear-gradient(rgba(51,51,51,1), rgba(26,26,26,1));
background-image: linear-gradient(rgba(51,51,51,1), rgba(26,26,26,1));
}
#headerContent{
width:64em; /* width of the content in the header so it can be centered */
margin:auto;
}
#logo{
width:15em; /* 240px */
height:15em; /* 240px */
margin-top:-1.5em; /* for overhang */
border-radius:15em;
position:absolute; /* prevents interference because of overhang */
z-index:2000;
background-image:url(../images/logo.svg);
background-size:contain;
}
#headline{
white-space:nowrap; /* prevents word wrap on small window sizes */
margin-left:16.25em; /* this is just what looks decent. no math here */
margin-top:3.25em; /* this is just what looks decent. no math here */
position:absolute; /* prevents messing with nav bar float right */
}
#title{ /* keep title short or it will break the design */
line-height:.8em; /* i don't know why this number works perfectly */
font-size:6em;
font-weight:normal;
font-family: 'Contrail One', sans-serif;
color:rgba(255,255,255,1);
}
#tagline{
line-height:1.5em;
font-size:1.5em;
font-weight:normal;
font-family: 'Contrail One', sans-serif;
color:rgba(255,255,255,1);
text-indent:.0625em;
}
/* ////////// Navigation ////////// */
nav{
height:3em;
margin-top:9em;
margin-right:1.5em;
float:right;
font-weight:normal;
font-family:'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
}
nav a{
display:block;
height:.8em; /* 1 / 1.25 */ /* prevents border from acting stupid */
margin-left:.8em;/* for spacing between links */ /* 1 / 1.25 */
padding-bottom:1.44em; /* 1.8 / 1.25 */
border-bottom:.16em solid rgba(0,0,0,0); /* .2 / 1.25 */
float:left;
font-size:1.25em; /* has to be defined here to prevent wonky changes elsewhere */
text-transform:uppercase;
text-decoration:none;
}
nav a.current{ /* a class applied to the link of the current page */
border-color:rgba(255,255,255,1);
}
nav a:link{
color:rgba(255,255,255,1);
text-decoration:none; /* cancles out normal link style */
}
nav a:visited{
color:rgba(255,255,255,1);
}
nav a:hover{
color:rgba(128,204,255,1);
border-color:rgba(128,204,255,1);
}
nav a:active{
color:rgba(128,204,255,1);
}
/* ////////// Page ////////// */
#pageContainer{
width:64em;
margin:auto;
}
/* ////////// Content ////////// */
#contentContainer{
width:61em;
padding:1.5em;
background-color:rgba(255,255,255,1);
box-shadow:inset 0 -1px 0 1px rgba(0,0,0,.1);
}
#content{
width:43.5em;
margin-right:1.5em;
float:left;
}
/* ////////// Post ////////// */
.post{
width:32em;
margin-bottom:1.5em;
float:right;
}
.post h1{
font-size:2em;
font-weight:normal;
font-family:'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
}
.post h2{
margin-left:0.125em; /* for aligning with title better */
font-size:1em;
font-weight:normal;
font-family:'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
color:rgba(191,191,191,1); /* gray */
}
.post h3, .post h4, .post h5, .post h6{
font-size:1em;
font-weight:normal;
font-family:'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
color:rgba(191,191,191,1); /* gray */
}
.post p{
text-indent:1em;
}
/* ////////// Post Sidebar ////////// */
.postSidebar{
width:10em;
float:left;
font-weight:normal;
font-family:'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
}
.postSidebar p{
text-align:center;
color:rgba(191,191,191,1);
}
/* ////////// Sidebar ////////// */
#sidebar{
float:right;
width:16em;
}
.sidePost{
margin-bottom:1.5em;
}
.sidePost h1, .sidePost h2, .sidePost h3, .sidePost h4, .sidePost h5, .sidePost h6{
font-size:1em;
font-weight:normal;
font-family:'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
}
.sidePost p{
text-indent:1em;
}
/* ////////// Footer ////////// */
footer p{
font-weight:normal;
font-family:'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
text-align:center;
}
最佳答案
经过大量的思考和搜索:
……呸。
关于html - 为什么这些不能在移动浏览器上正确缩放?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17637219/
大家好, 我看到了来自 java 项目中的 jsp 页面。 想问一下这些html标签有什么区别。 请多多指教。 示例代码如下: 最佳答案 使用struts-html标签库,其中只是普
我有一个页面,我正在从电子邮件中读取 HTML。 有时,来自电子邮件的文本包含 HTML 和 CSS,它完全改变了我的页面样式。 我不希望我的页面样式因此受到影响。我如何严格阅读特定 div(框)内的
我知道有类似的问题,但我想对我的特定代码进行一些输入。 我有一个图像,我将其切成 9 块,并创建了一个 3x3 HTML 表来显示它。 但是我的表在行之间有空格,但在列之间没有空格。我没有使用任何 C
编辑:Waylan 的回答成功了!谢谢! 我正在尝试压缩文档的 .html 文件以发送给客户。目标是获得与浏览实际网站相同的体验。 打开 .html 文件时,单击的任何链接都会转到父文件夹,而不是特定
编辑:Waylan 的回答成功了!谢谢! 我正在尝试压缩文档的 .html 文件以发送给客户。目标是获得与浏览实际网站相同的体验。 打开 .html 文件时,单击的任何链接都会转到父文件夹,而不是特定
这是 question 的扩展.我正在尝试解析嵌入在 Blogger 博客的 XML 备份中的 HTML 片段,并用 InDesign 标签重新标记它们。 Blogger 并未对其任何帖子的 HTML
我知道在 html 中元素之间的换行符被视为空格,但我认为当您尝试使用响应式布局时这非常可怕。 例如,这里我们有预期和正确的行为,但要获得它,我必须删除元素之间的 html 中的换行符: https:
我正在尝试将文本文件显示为 html。我正在使用 ionic 。我正在发送一个 html 格式的响应,但在一个文本文件中发送到配置文件页面。它在 .ts 页面的变量名中。 @Component({
假设我有一个 html 文档: test 我想在浏览器中显示该代码。然后我会创建类似的东西: <html>test<html> 为了在中间制作 gubbins,我有一个函数
HTML 元素和 HTML 标签有什么区别?渲染有什么区别吗?使用标签或元素时有什么特殊注意事项吗? 最佳答案 是一个标签,特别是一个开始标签 也是一个标签,一个结束标签 This is a para
我有这个表格的模态形式。该表正在填充大量数据,但我不想分页。相反,我想以模式形式降低表格的高度并为表格添加溢出。下面是我的代码,但它不起作用。 请问我该如何实现? CSS #table{
我记得有一个 Linux 命令可以从给定的 URL 返回 HTML 代码。您可以将 URL 作为此命令的参数,然后返回 HTML 代码,而不是在浏览器中输入 URL。 哪个命令执行此操作? 最佳答案
我有一个 html 页面,我想在其中包含另一个有很多链接的 html 页面。我能够使用 iframe 实现它,但我希望 iframe 内的页面具有与原始页面相同的文本和链接颜色属性,我不想要滚动条,我
我正在使用 HTML 写一本书。如果我把它写在一个 html 文件中,整个代码就会变长,所以我想将每一章保存到不同的文件中,然后将它们加载到主 html 中。我的意思是有像 chapter1.html
在显示之前,我必须将一个网站重定向到另一个网站。我试过使用 .htaccess,但它给我带来了问题。我也使用过 javavscript 和 meta,但在加载我要从中传输的页面之前它不起作用。帮助?
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
如何打印“html”标签,包括“”?如何在不使用文本区域和 Javascript 的情况下对任何标签执行此操作? 最佳答案 使用HTML character references : <html
我需要将 Ruby on Rails 应用程序中的 html.slim 文件转换为 html.erb。有什么简单的方法吗?我尝试了 Stack Overflow 和其他网站中列出的许多选项。但对我没有
这个问题在这里已经有了答案: Is it necessary to write HEAD, BODY and HTML tags? (6 个答案) 关闭 8 年前。 我在 gitHub 上找到了这个
如果不允许通过 JavaScript 进行额外的 DOM 操作,我正在寻找可以加载外部资源的元素列表。我正在尝试使用 HTML 查看器托管来自第三方的电子邮件,当发生这种情况时,我需要删除任何自动加载
我是一名优秀的程序员,十分优秀!