- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么 transform:rotateY();
导致 div 仅在 Safari 中重叠?这里有一些屏幕截图可以更好地解释......
What it should look like:
What it shouldn't look like (only occurs in Safari):
这是非常奇怪的行为,此后我从整个代码中删除了 transform:rotateY();
但它确实引起了关于为什么会发生这种情况的混淆。
这是原始程序的代码片段:
window.addEventListener('load', function() {
var percentHeight = Math.floor(window.innerHeight / 100);
var percentWidth = Math.floor(window.innerWidth / 100);
initializeMessages();
var hourHand = document.getElementById('watchHourHand');
var minuteHand = document.getElementById('watchMinuteHand');
var secondHand = document.getElementById('watchSecondHand');
var markers = document.getElementById('markers');
for (var i = 0; i != 12; i++) {
var marker = document.createElement('div');
marker.className = 'marker';
markers.appendChild(marker);
markers.appendChild(marker);
}
window.setInterval(function() {
//minute degrees = 6
//second degrees = 6
//hour degrees = 30
var date = new Date();
var hours = date.getHours();
if (hours > 12) {
hours = hours - 12;
}
if (hours == 0) {
hours = 12;
}
var minutes = date.getMinutes();
var seconds = date.getSeconds();
var secondDegrees = seconds * 6;
var minuteDegrees = minutes * 6 + seconds / 60;
var hourDegrees = hours * 30 + minutes / 60;
if (hourDegrees == 0) {
//hourHand.className = 'noTransition';
hourDegrees = 360;
}
hourHand.style.oTransform = 'rotate(' + hourDegrees + 'deg)';
hourHand.style.mozTransform = 'rotate(' + hourDegrees + 'deg)';
hourHand.style.webkitTransform = 'rotate(' + hourDegrees + 'deg)';
hourHand.style.msTransform = 'rotate(' + hourDegrees + 'deg)';
hourHand.style.transform = 'rotate(' + hourDegrees + 'deg)';
if (hourDegrees == 360) {
hourHand.style.oTransform = 'rotate(0deg)';
hourHand.style.mozTransform = 'rotate(0deg)';
hourHand.style.webkitTransform = 'rotate(0deg)';
hourHand.style.msTransform = 'rotate(0deg)';
hourHand.style.transform = 'rotate(0deg)';
hourHand.className = 'noTransition';
}
if (minuteDegrees == 0) {
//minuteHand.className = 'noTransition';
minuteDegrees = 360;
}
minuteHand.style.oTransform = 'rotate(' + minuteDegrees + 'deg)';
minuteHand.style.mozTransform = 'rotate(' + minuteDegrees + 'deg)';
minuteHand.style.webkitTransform = 'rotate(' + minuteDegrees + 'deg)';
minuteHand.style.msTransform = 'rotate(' + minuteDegrees + 'deg)';
minuteHand.style.transform = 'rotate(' + minuteDegrees + 'deg)';
if (minuteDegrees == 360) {
minuteHand.style.oTransform = 'rotate(0deg)';
minuteHand.style.mozTransform = 'rotate(0deg)';
minuteHand.style.webkitTransform = 'rotate(0deg)';
minuteHand.style.msTransform = 'rotate(0deg)';
minuteHand.style.transform = 'rotate(0deg)';
minuteHand.className = 'noTransition';
}
if (secondDegrees == 0) {
//secondHand.className = 'noTransition';
secondDegrees = 360;
}
secondHand.style.oTransform = 'rotate(' + secondDegrees + 'deg)';
secondHand.style.webkitTransform = 'rotate(' + secondDegrees + 'deg)';
secondHand.style.msTransform = 'rotate(' + secondDegrees + 'deg)';
secondHand.style.mozTransform = 'rotate(' + secondDegrees + 'deg)';
secondHand.style.transform = 'rotate(' + secondDegrees + 'deg)';
if (secondDegrees == 360) {
secondHand.style.oTransform = 'rotate(360deg)';
secondHand.style.webkitTransform = 'rotate(360deg)';
secondHand.style.msTransform = 'rotate(360deg)';
secondHand.style.mozTransform = 'rotate(360deg)';
secondHand.style.transform = 'rotate(360deg)';
window.setTimeout(function() {
secondHand.className = 'noTransition';
}, 1000)
}
window.setTimeout(function() {
secondHand.className = '';
minuteHand.style.className = '';
hourHand.style.className = '';
}, 500);
}, 1000);
function initializeMessages() {
var messages = ['Modern 12 hour time invented <span class="hyphen">-</span> 2000 BC (Egyptians)', 'Sundial <span class="hyphen">-</span> 1500 BC (Egyptians)', 'Candle clock <span class="hyphen">-</span> 520 AD (Chinese)', 'Salisbury cathedral clock <span class="hyphen">-</span> 1386 AD Europe', 'Pendulum clock <span class="hyphen">-</span> 1580 AD France', 'Pocket watch <span class="hyphen">-</span> 1675 AD England', 'Wristwatch <span class="hyphen">-</span> 1571 AD England', 'Electric clock <span class="hyphen">-</span> 1814 AD London England'];
var fontSizes = [18, 28, 36, 40, 44, 48, 52];
var messageSource = document.getElementById('messages');
for (var i = 0; i != messages.length; i++) {
var messageDiv = document.createElement('div');
messageDiv.className = 'message';
messageDiv.style.fontSize = fontSizes[Math.floor(Math.random() * fontSizes.length)] + 'px';
messageDiv.innerHTML = messages[i];
messageSource.appendChild(messageDiv);
}
}
window.setInterval(function() {
var messages = document.getElementsByClassName('message');
var randomMessage = messages[Math.floor(Math.random() * messages.length)];
randomMessage.style.display = 'block';
randomMessage.style.opacity = '1';
randomMessagePercentHeight = randomMessage.clientHeight / percentHeight;
randomMessagePercentWidth = randomMessage.clientWidth / percentWidth;
randomMessage.style.left = Math.floor(Math.random() * (100 - randomMessagePercentWidth)) + 'vw';
randomMessage.style.top = Math.floor(Math.random() * (100 - randomMessagePercentHeight)) + 'vh';
}, 2000);
var messages = document.getElementsByClassName('message');
window.setInterval(function() {
var randomMessage = messages[Math.floor(Math.random() * messages.length)];
randomMessage.style.opacity = '0';
}, messages.length * 500);
window.addEventListener('resize', function() {
percentHeight = Math.floor(window.innerHeight / 100);
percentWidth = Math.floor(window.innerWidth / 100);
});
});
@import url(https://fonts.googleapis.com/css?family=Open+Sans:600);
html,
body {
margin: 0;
padding: 0;
}
@-o-keyframes pageBackground {
0% {
background-color: #091321;
}
25% {
background-color: #3C1217;
}
50% {
background-color: #16310D;
}
75% {
background-color: #3A1831;
}
}
@-moz-keyframes pageBackground {
0% {
background-color: #091321;
}
25% {
background-color: #3C1217;
}
50% {
background-color: #16310D;
}
75% {
background-color: #3A1831;
}
}
@-webkit-keyframes pageBackground {
0% {
background-color: #091321;
}
25% {
background-color: #3C1217;
}
50% {
background-color: #16310D;
}
75% {
background-color: #3A1831;
}
}
@-ms-keyframes pageBackground {
0% {
background-color: #091321;
}
25% {
background-color: #3C1217;
}
50% {
background-color: #16310D;
}
75% {
background-color: #3A1831;
}
}
@keyframes pageBackground {
0% {
background-color: #091321;
}
25% {
background-color: #3C1217;
}
50% {
background-color: #16310D;
}
75% {
background-color: #3A1831;
}
}
#projectContainer {
background-color: #091321;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
-o-animation: pageBackground 20s infinite;
-o-animation-fill-mode: forwards;
-moz-animation: pageBackground 20s infinite;
-moz-animation-fill-mode: forwards;
-moz-animation: pageBackground 20s infinite;
-webkit-animation-fill-mode: forwards;
-ms-animation: pageBackground 20s infinite;
-webkit-animation-fill-mode: forwards;
-webkit-animation: pageBackground 20s infinite;
animation-fill-mode: forwards;
}
#verticalAlign {
-o-transform: translate(0%, -50%);
-moz-transform: translate(0%, -50%);
-webkit-transform: translate(0%, -50%);
-ms-transform: translate(0%, -50%);
transform: translate(0%, -50%);
position: absolute;
top: 50%;
width: 100%;
overflow: visible;
}
#watchBeltContainer {
height: 75vh;
width: 100%;
position: absolute;
z-index: -1;
bottom: -12.5vh;
}
#watchBelt {
width: 50%;
margin: auto;
height: 100%;
background: #555;
border-radius: 50px;
box-shadow: 0px -10px 3px #444;
transform: rotateY(20deg);
}
#glass {
width: 100%;
height: 70%;
position: absolute;
background-color: #aaa;
opacity: .5;
z-index: 1000000000000000;
/*left:15%;*/
border-radius: 50%;
border-bottom-left-radius: 30%;
border-bottom-right-radius: 30%;
-webkit-filter: blur(20px);
-o-filter: blur(20px);
-moz-filter: blur(20px);
-ms-filter: blur(20px);
filter: blur(20px);
}
#watchContainer {
display: table;
margin: auto;
width: 50vh;
height: 50vh;
position: relative;
border-radius: 50%;
padding: 2vh;
/*background-color:#AB9883;*/
background-color: #333;
border: 1px solid #444;
overflow: visible;
}
#watchStructure {
width: 100%;
height: 100%;
display: table-cell;
}
#watchFace {
width: 100%;
height: 100%;
border-radius: 50%;
/*background: -ms-linear-gradient(-35deg, #444, #eee);
background: -moz-linear-gradient(-35deg, #444, #eee);
background: -webkit-linear-gradient(-35deg, #444, #eee);
background: -o-linear-gradient(-35deg, #444, #eee);
background: linear-gradient(-35deg, #444, #999);
position:relative;*/
/*background-color:#0E1021;*/
background-color: #ddd;
position: relative;
box-shadow: inset 0 0 5px #333;
}
#watchHourHand {
height: 30%;
width: 3%;
background-color: #333;
position: absolute;
left: 48.5%;
top: 20%;
-o-transform-origin: bottom center;
-moz-transform-origin: bottom center;
-webkit-transform-origin: bottom center;
-ms-transform-origin: bottom center;
transform-origin: bottom center;
}
#watchMinuteHand {
width: 3%;
height: 50%;
background-color: #333;
position: absolute;
left: 48.5%;
-o-transform-origin: bottom center;
-moz-transform-origin: bottom center;
-webkit-transform-origin: bottom center;
-ms-transform-origin: bottom center;
transform-origin: bottom center;
}
#watchSecondHand {
width: 1%;
height: 50%;
background-color: #333;
position: absolute;
left: 49%;
-o-transform-origin: bottom center;
-moz-transform-origin: bottom center;
-webkit-transform-origin: bottom center;
-ms-transform-origin: bottom center;
transform-origin: bottom center;
}
#watchHandButton {
width: 4%;
height: 4%;
background-color: #333;
border-radius: 50%;
position: absolute;
left: 48%;
top: 48%;
z-index: 100000;
}
#markers {
width: 100%;
height: 100%;
position: absolute;
}
.marker {
position: absolute;
background-color: #82715E;
}
/*marker positioning*/
.marker {
width: 3%;
height: 8%;
}
.marker:nth-child(1) {
left: 48.5%;
}
.marker:nth-child(2) {
left: 72%;
top: 6.5%;
-o-transform: rotate(30deg);
-moz-transform: rotate(30deg);
-webkit-transform: rotate(30deg);
-ms-transform: rotate(30deg);
transform: rotate(30deg);
}
.marker:nth-child(3) {
left: 88.5%;
top: 23%;
-o-transform: rotate(60deg);
-webkit-transform: rotate(60deg);
-ms-transform: rotate(60deg);
-moz-transform: rotate(60deg);
transform: rotate(60deg);
}
.marker:nth-child(4) {
left: 92%;
top: 48.5%;
width: 8%;
height: 3%;
}
.marker:nth-child(5) {
top: 69%;
left: 88.5%;
-o-transform: rotate(120deg);
-moz-transform: rotate(120deg);
-webkit-transform: rotate(120deg);
-ms-transform: rotate(120deg);
transform: rotate(120deg);
}
.marker:nth-child(6) {
top: 85.5%;
left: 72%;
-o-transform: rotate(150deg);
-moz-transform: rotate(150deg);
-webkit-transform: rotate(150deg);
-ms-transform: rotate(150deg);
transform: rotate(150deg);
}
.marker:nth-child(7) {
top: 92%;
left: 48.5%;
}
.marker:nth-child(8) {
top: 85.5%;
left: 26%;
-o-transform: rotate(30deg);
-moz-transform: rotate(30deg);
-webkit-transform: rotate(30deg);
-ms-transform: rotate(30deg);
transform: rotate(30deg);
}
.marker:nth-child(9) {
top: 69%;
left: 8.5%;
-o-transform: rotate(60deg);
-moz-transform: rotate(60deg);
-ms-transform: rotate(60deg);
-webkit-transform: rotate(60deg);
transform: rotate(60deg);
}
.marker:nth-child(10) {
top: 48.5%;
width: 8%;
height: 3%;
}
.marker:nth-child(11) {
top: 23%;
left: 8.5%;
-o-transform: rotate(120deg);
-moz-transform: rotate(120deg);
-webkit-transform: rotate(120deg);
-ms-transform: rotate(120deg);
transform: rotate(120deg);
}
.marker:nth-child(12) {
top: 6%;
left: 26%;
-o-transform: rotate(150deg);
-moz-transform: rotate(150deg);
-webkit-transform: rotate(150deg);
-ms-transform: rotate(150deg);
transform: rotate(150deg);
}
/*end marker positioning*/
.message {
font-family: 'Open Sans', sans-serif;
/*color:#555;*/
color: #444;
/*-webkit-text-stroke: 1px #555;*/
/*text-shadow:
-.5px -.5px 0 #333,
.5px -.5px 0 #333,
-.5px .5px 0 #333,
.5px .5px 0 #333;*/
/*text-shadow:-2px -2px 2px #555;*/
white-space: nowrap;
position: absolute;
-o-transition: all 10s ease, opacity 2s ease, display 0s ease;
-moz-transition: all 10s ease, opacity 2s ease, display 0s ease;
-webkit-transition: all 10s ease, opacity 2s ease, display 0s ease;
-ms-transition: all 10s ease, opacity 2s ease, display 0s ease;
transition: all 10s ease, opacity 2s ease, display 0s ease;
margin: 0;
left: 0;
top: 0;
opacity: 0;
display: none;
background-color: rgba(0, 0, 0, .05);
padding: 2%;
border-radius: 8px;
}
* {
-o-transition: all .5s ease;
-moz-transition: all .5s ease;
-webkit-transition: all .5s ease;
-ms-transition: all .5s ease;
transition: all .5s ease;
-webkit-backface-visibility: hidden;
/*overflow:hidden;*/
overflow: visible;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
background-color: transparent;
}
.noTransition {
-o-transition: none !important;
-moz-transition: none !important;
-webkit-transition: none !important;
-ms-transition: none !important;
transition: none !important;
-o-animation-direction: reverse;
-moz-animation-direction: reverse;
-webkit-animation-direction: reverse;
-ms-animation-direction: reverse;
animation-direction: reverse;
}
<div id="projectContainer">
<div id="messages"></div>
<div id="verticalAlign">
<div id="watchContainer">
<div id="watchStructure">
<div id="watchFace">
<div id="watchBeltContainer">
<div id="watchBelt"></div>
</div>
<div id="glass"></div>
<div id="markers"></div>
<div id="watchHourHand"></div>
<div id="watchMinuteHand"></div>
<div id="watchSecondHand"></div>
<div id="watchHandButton"></div>
</div>
</div>
</div>
</div>
</div>
Safari 用户,请仔细查看 #watchBelt 样式(查看代码段中 CSS 代码块的顶部,了解与 #watchBelt 相关的代码)。这是#watchBelt 代码:
#watchBelt {
width: 50%;
margin: auto;
height: 100%;
background: #555;
border-radius: 50px;
box-shadow: 0px -10px 3px #444;
transform: rotateY(20deg);
}
我没有在 IE 或 Edge 中对此进行测试,如果有人能告诉我在 IE 和/或 Edge 中发生了什么,我将不胜感激。谢谢:)
最佳答案
#watchBelt {
width: 50%;
margin: auto;
height: 100%;
background: #555;
border-radius: 50px;
box-shadow: 0px -10px 3px #444;
transform: rotateY(20deg);
position :relative;
z-index:-1;/*decrease it until it moves to back*/
}
关于CSS 转换导致 div 在 Safari 中重叠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33898856/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!