- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我做了一个在背景中有动态图像的网页。
1. IE 和 Opera 只显示图像不会移动它。 (字体也不起作用)
2. Chrome 和 Safari 也不移动图像。(但字体正确显示)
3. Firefox 根据需要移动图像。(但是字体不显示)
您可以在这里查看网站:http://ankitsuryawanshi.in/projects/404-html/
(编辑过的)CSS 代码在这里:
/*-----------------------------------------------------------------------
@FONT-FACE
------------------------------------------------------------------------*/
@font-face {
font-family: 'ChunkFive-Roman';
src: url('../fonts/Chunkfive-roman-webfont.eot');
src: url('../fonts/Chunkfive-roman-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/Chunkfive-roman-webfont.woff') format('woff'),
url('../fonts/chunkfive-roman-webfont.ttf') format('truetype'),
url('../fonts/chunkfive-roman-webfont.svg#ChunkFiveRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'BloklettersBalpen';
src: url('../fonts/blokletters-balpen-webfont.eot');
src: url('../fonts/blokletters-balpen-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/blokletters-balpen-webfont.woff') format('woff'),
url('../fonts/blokletters-balpen-webfont.ttf') format('truetype'),
url('../fonts/blokletters-balpen-webfont.svg#BloklettersBalpen') format('svg');
font-weight: normal;
font-style: normal;
}
/*-----------------------------------------------------------------------
LETTERING SPECIFIC STYLES
------------------------------------------------------------------------*/
/* Logo H1 Text */
#logo .word1 {
margin-left: 3px;
}
#logo .word1 span {
display: inline-block;
position: relative;
letter-spacing: 0;
transition: width 0.2s;
}
#logo span:hover {
top: 4px;
}
/*-----------------------------------------------------------------------
DEFAULTS
------------------------------------------------------------------------*/
body {
color: #000;
background: #c1b69a url(../images/texture.jpg);
}
a {
color: #000;
text-decoration: none;
outline: none;
}
h1 {
font-family: 'ChunkFive-Roman', sans-serif;
color: #1e1e1e;
font-size: 60px;
font-weight: 500;
line-height: 1;
text-transform: none;
}
h2 {
font-family: 'ChunkFive-Roman', sans-serif;
color: #1e1e1e;
font-size: 114px;
font-weight: 800;
line-height: 1;
text-transform: uppercase;
text-shadow: #62b445 1px 1px 0, #62b445 2px 2px 0, #62b445 3px 3px 0, #45a5f6 4px 4px 0, #45a5f6 5px 5px 0, 5px 8px 10px rgba(0,0,0,.35);
}
h3 {
font-size: 46px;
font-weight: bold;
line-height: 1.5;
color: #262626;
}
h4 {
font-family: 'ChunkFive-Roman', sans-serif;
font-size: 26px;
color: #262626;
margin-bottom: 20px;
font-style: normal;
text-transform: uppercase;
}
.written {
font-family: 'BloklettersBalpen',sans-serif;
font-size: 18px;
color: #000;
}
.written-small {
font-family: 'BloklettersBalpen', sans-serif;
font-size: 14px;
color: #000;
}
p {
font-size: 20px;
color: #000;
}
/* About Page Definitions Area */
.col-def-plus p,.col-def-equals p {
font-size: 80px;
font-weight: 800;
}
.col-def p {
font-size: 18px;
}
div.col-def p.word-break {
font-size: 28px;
font-weight: 900;
color: #000;
}
div.col-def p.word-def {
font-size: 14px;
line-height: 1.7;
margin-top: 12px;
font-style: italic;
color: #333;
}
#shareTab {
font-family: 'ChunkFive-Roman', sans-serif;
}
/*-----------------------------------------------------------------------
COMMON CLASSES
------------------------------------------------------------------------*/
.clear {
clear: both;
}
.wrap {
max-width: 960px;
width: 100%;
margin: 0 auto;
}
.fr {
float: right;
}
.fl {
float: left;
}
.ac {
text-align: center;
}
.line-through {
text-decoration: line-through;
}
.underline {
text-decoration: underline;
}
/*-----------------------------------------------------------------------
FLOATING BACKGROUND IMAGES
------------------------------------------------------------------------*/
#clouds {
z-index: -1;
background: url(../images/clouds.png);
position: absolute;
width: 100%;
height: 736px;
display: block;
}
@keyframes "float-clouds" {
0% {
background-position: 2400px 0;
}
100% {
background-position: 0 0;
}
}
@-moz-keyframes float-clouds {
0% {
background-position: 2400px 0;
}
100% {
background-position: 0 0;
}
}
@-webkit-keyframes "float-clouds" {
0% {
background-position: 2400px 0;
}
100% {
background-position: 0 0;
}
}
@-ms-keyframes "float-clouds" {
0% {
background-position: 2400px 0;
}
100% {
background-position: 0 0;
}
}
@-o-keyframes "float-clouds" {
0% {
background-position: 2400px 0;
}
100% {
background-position: 0 0;
}
}
#clouds {
animation-name: float-clouds;
-webkit-animation-duration: 95s;
animation-iteration-count: infinite;
animation-timing-function: linear;
-moz-animation-duration: 95s;
-o-animation-duration: 95s;
-ms--animation-duration: 95s;
}
如何更正此处的所有内容,使其在所有浏览器中都能正常工作。
这是图像移动的JS代码:
$(document).ready(function() {
$("#logo h1, .nav-here-home, .nav-here-about, .home-page-tag h3, .about-page-tag h3, .written").lettering('words').children('span').lettering();
$(".home-intro h2").fitText(.86);
$(".about-intro h2").fitText(.86);
});
// --------------------------------------------------- //
// Background Image Floating //
// --------------------------------------------------- //
$(document).ready(function() {
if (!$.browser.webkit){
var clouds = $('#clouds');
var background = 0;
setInterval(function(){
background -= 2;
if (background == 1200) background = 0;
clouds.css('background-position', background)
}, 95)
}
})
我现在应该在哪里编辑它?
最佳答案
我创建了一个 DEMO 。
希望这就是您要找的。尽管您需要根据需要进行一些调整。
关于javascript - 图像不动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14255039/
我有一个 RelativeLayout,我从 drawable 设置了背景。我能够将 RelativeLayout 的背景更改为另一个RadioButton 被选中。但是当它发生变化时我该如何给它一个
我正在尝试在 Google 的 Play 报亭应用中复制此动画: http://i.imgur.com/UuX1PRO.webm 我的布局看起来像这样: ... more
我一直在评估 Airflow 。我有一个用例,我有一个每小时运行一次的工作流,以获得每小时的数据聚合。另一个每天运行以获得相同的每日聚合。是否可以创建一个组合工作流,其中仅当所有小时聚合在过去一天都成
我有下一个结构: Activity 1: Activity 2: Form to add new item to the recycler View. RecyclerView
我只是想知道 JavaFx 中是否有任何简单的动 Canvas 局方法,例如 VBox 和 HBox。我希望我的应用程序在指定时间后更改 VBox 的背景颜色。但我意识到没有任何类似于 FillTra
我正在使用 Angular 4 动画在按钮上测试一个简单的淡入/淡出动画。我遇到的问题是,因为我使用的是 bool 值,所以没有任何东西被触发。从开发工具来看,它看起来像一个 .ng-animatin
有没有人在 SublimeREPL 中使用 irb 交换 pry 有任何运气?我很接近,我想。我没有收到错误,但是当我输入命令时也没有收到响应。每次我点击返回时,它的行为就像缓冲区被重置一样。 我正在
今天要向小伙伴们介绍的是一个能够快速地把数据制作成可视化、交互页面的 Python 框架:Streamlit,分分钟让你的数据动起来! 犹记得我在做机器学习和数据分析方面的毕设时,
简而言之,我想缩放 View - 就像 Android Market 一样,当您单击“更多”按钮时,例如在“描述”上。 我发现,Android Market 具有以下结构的布局: > 64d
我似乎无法让它工作。 我正在尝试每天发送一个给定的文件,其名称类似于“file_{{ds_nodash}}.csv”。 问题是我似乎无法将此名称添加为文件名,因为它似乎无法使用。在电子邮件的正文或主题
当您调整窗口大小时, float 的 div 将按预期换行到下一行。但我真的很希望这种布局变化是动画化的。 编辑:顺便说一句,找到一个不依赖于 JQuery 的解决方案会很好。如果需要,我不介意编写自
我有一个复杂的数据处理管道,目前在单台机器上用 Python 实现。 管道是围绕处理属于一系列实现文档、页面、单词等的自定义类的对象而构建的。该管道中的大多数操作都是令人尴尬地并行的——它们处理单个文
我是一名优秀的程序员,十分优秀!