我正在尝试制作在线游戏。我想在Paper.io之后模拟登录屏幕。我创建了用户名输入和播放按钮,但css文件中为用户名输入指定的宽度和高度不起作用。它指定为216 x 30但是当我打开网站时它不起作用。有点奇怪的是,当我把所有代码放到这个论坛的代码片段中时,它运行正常,但是当我在自己的计算机上运行它时,它不起作用。这是我的第一个在线HTML5游戏,所以请不要对我大喊大叫! :(
html,
body {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
border: none;
overflow: hidden;
padding: 0;
font-family: 'Luckiest Guy';
font-size: 22px;
user-select: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
}
#game .ctx,
#ctx {
height: 100%;
width: 100%;
overflow: hidden;
position: fixed;
left: 0;
top: 0;
}
#pre_game {
display: none;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: #dff3f7;
}
#pre_game .dark,
#dark {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, .8);
}
#pre_game .logo {
position: absolute;
top: 15px;
left: 50%;
width: 500px;
height: 160px;
margin-left: -250px;
background: url('/img/logo.png') center center no-repeat;
background-size: contain;
}
#pre_game .grow {
position: absolute;
left: 50%;
margin-left: -168px;
width: 336px;
top: 250px;
}
#pre_game .grow {
animation: leaves 2s ease-in-out infinite alternate;
-webkit-animation: leaves 2s ease-in-out infinite alternate;
}
#pre_game input,
#contact .button {
position: absolute;
left: 0px;
top: 0px;
padding: 15px 5px;
text-indent: 10px;
border: 0;
height: 30px;
width: 216px;
line-height: 30px;
font-size: 25px;
background: #ededd1;
border-bottom: 6px solid #a1a18d;
outline: none;
}
#contact .button {
text-indent: 0;
}
#pre_game .button,
#contact .button {
position: absolute;
right: 0px;
top: 2px;
padding: 15px 5px;
text-align: center;
cursor: pointer;
height: 30px;
width: 90px;
}
#pre_game .button,
#contact .button {
background: #eaec4b;
border-bottom: 6px solid #a1a130;
margin-top: -2px;
color: #888a34;
line-height: 32px;
font-size: 34px;
}
#pre_game .button:hover,
#contact .button:hover {
background: #fafc5b;
}
#pre_game .button:active,
#contact .button:active {
border: none;
border-bottom: 2px solid #a1a130;
border-top: 4px solid #333;
}
@keyframes leaves {
0% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
100% {
transform: scale(0.9);
-webkit-transform: scale(0.9);
}
}
@-webkit-keyframes leaves {
0% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
100% {
transform: scale(0.9);
-webkit-transform: scale(0.9);
}
}
#pre_game:before {
content: '';
box-shadow: inset 0 0 320px #80969e;
-webkit-box-shadow: inset 0 0 320px #80969e;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
input:not([type]),
input[type="email" i],
input[type="number" i],
input[type="password" i],
input[type="tel" i],
input[type="url" i],
input[type="text" i] {
padding: 1px 0px;
}
input {
-webkit-appearance: textfield;
background-color: white;
-webkit-rtl-ordering: logical;
user-select: text;
cursor: auto;
padding: 1px;
border-width: 2px;
border-style: inset;
border-color: initial;
border-image: initial;
}
input,
textarea,
select,
button {
text-rendering: auto;
color: initial;
letter-spacing: normal;
word-spacing: normal;
text-transform: none;
text-indent: 0px;
text-shadow: none;
display: inline-block;
text-align: start;
margin: 0em 0em 0em 0em;
font: 13.3333px Arial;
}
button,
meter,
progress {
-webkit-writing-mode: horizontal-tb;
}
<link href='//fonts.googleapis.com/css?family=Luckiest Guy' rel='stylesheet'>
<div id="pre_game" style="display: block;">
<div class="dark"></div>
<div class="logo"></div>
<div class="grow">
<div class="username">
<input type="text" placeholder="Your Name" style="left: 0px;">
</div>
<div class="button play" style="right: 0px;" onclick="game_start()">PLAY</div>
</div>
</div>
更新:我不认为我在上面的解释中已经足够清楚了。在发布的代码片段中,我希望它是如此,但是当我在自己的计算机上运行完全相同的代码并打开网站时,它就不一样了。这是一些显示我看到的截图。 what I see in the website 下图中的尺寸是错误的。它们应该是216 x 30而不是206 x 0。 Wrong dimensions
答案:老实说,我不知道为什么会这样,但事实确实如此。我尝试了normalize.css的东西,甚至添加了包含CSS Timber Hjellum的行,这只会让它变得更糟。我意识到,从原始宽度和高度中减去我在侧面填充的数字,这些数字成为元素的实际宽度和高度。我所做的就是在宽度上增加10(左边5px填充,右边总共10次)并增加36到高度(15px填充顶部和底部是30但是当我添加30时它最终说高度为24所以我再增加6个)。无论如何,谢谢大家的帮助!答案 0 :(得分:1)
您应该研究的一件事是在项目中添加CSS重置或normalize.css(而不是两者)。您可以谷歌并从github获取最新信息,其好处是它使浏览器更加一致地呈现所有元素并符合现代标准。这将使您的生活更加快乐,而不必经常处理不同浏览器和媒体设备上的所有像素不一致。
然后考虑这个框大小调整CSS snippit:
html {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;}
*,
*::before,
*::after {
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
}
https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
这将使填充和宽度更直观,或者您期望的方式工作。我的建议是添加normalize并确保它有box-sizing:border-box reset,然后看看你的宽度/高度是如何为你工作的。这可能会彻底解决您的问题。
但是专门回答你的问题,最可能的原因是如果你想要一个元素为216px,填充为5px,你可以设置宽度
element {
width: 206px; /* 216 - (5px padding + 5px padding) = 206px */
padding: 5px /* top: 5px, right: 5px, bottom: 5px, left: 5px; */
}
总之,您需要在整体宽度上添加填充(左侧为5px,右侧为5px)。
答案 1 :(得分:0)
如果&#34;没有工作&#34;你的意思是它没有设置为216x30,因为你没有考虑填充和边框的宽度和高度。它的工作正常。
设置元素的高度和宽度时,可以在内容上设置它,不包括边距,填充或边框。
答案 2 :(得分:0)
所有这些属性都会使高度变得混乱,因此您可能需要拆分按钮并输入样式并进行实验,直到获得完美的高度:
padding: 15px 5px;
height: 30px; <-- not needed for the input
line-height: 30px;
font-size: 25px;
如果您还有问题,请参考以下内容:https://jsfiddle.net/timhjellum/8mytme49/10/。小提琴看起来很棒: - )