gpt4 book ai didi

css - IE8 缩放过滤器

转载 作者:行者123 更新时间:2023-11-28 15:35:58 25 4
gpt4 key购买 nike

我在我的网站上使用了 CSS3 缩放技术,它在 Chome、IE9 和 Firefox 中运行良好,但我似乎无法让它在 IE8 上运行,我尝试查看过滤器但我似乎无法去任何地方。

这是我的HTML

<div id="nav">
<ul id="index_cards">
<li id="card-1">
<h3><strong>Home</strong></h3>

</li>
<li id="card-2">
<h3><strong>About/Contact</strong></h3>

</li>
<li id="card-4">
<h3><strong>Portfolio</strong></h3>

</li>
<li id="card-5">
<h3><strong>Services</strong></h3>

</li>
</ul>
</div>

这是我的CSS

ul#index_cards {
margin-top:50px;
text-align:center;
}

ul#index_cards li {
background:url(../images/card_bg.jpg) repeat;
height:50px;
width:145px;
display:block;
float:left;
border:1px solid #666;
padding:25px 10px;
position:relative;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-moz-box-shadow: 2px 2px 10px #000;
-ms-box-shadow: 2px 2px 10px #000;
-webkit-box-shadow: 2px 2px 10px #000;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
}

#card-1 {
-webkit-transform: rotate(-20deg);
-moz-transform: rotate(-20deg);
-ms-transform: rotate(-20deg);
line-height:10px;
z-index:1;
left:-110px;
top:125px;
}

#card-2 {
-webkit-transform: rotate(-10deg);
-moz-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
line-height:10px;
z-index:2;
left:-100px;
top:80px;
}

#card-4 {
-webkit-transform: rotate(10deg);
-moz-transform: rotate(10deg);
-ms-transform: rotate(10deg);
line-height:10px;
z-index:2;
right:-400px;
top:80px;
}

#card-5 {
-webkit-transform: rotate(20deg);
-moz-transform: rotate(20deg);
-ms-transform: rotate(20deg);
line-height:10px;
z-index:1;
right:-410px;
top:125px;
}

/* Hover States */

ul#index_cards li:hover {
z-index:4;
}

#card-1:hover {
-moz-transform: scale(1.1) rotate(-18deg);
-ms-transform: scale(1.1) rotate(-18deg);
-webkit-transform: scale(1.1) rotate(-18deg);
}

#card-2:hover {
-moz-transform: scale(1.1) rotate(-8deg);
-ms-transform: scale(1.1) rotate(-8deg);
-webkit-transform: scale(1.1) rotate(-8deg);
}

#card-3:hover {
-moz-transform: scale(1.1) rotate(2deg);
-ms-transform: scale(1.1) rotate(2deg);
-webkit-transform: scale(1.1) rotate(2deg);
}

#card-4:hover {
-moz-transform: scale(1.1) rotate(12deg);
-ms-transform: scale(1.1) rotate(12deg);
-webkit-transform: scale(1.1) rotate(12deg);
}

#card-5:hover {
-moz-transform: scale(1.1) rotate(22deg);
-ms-transform: scale(1.1) rotate(22deg);
-webkit-transform: scale(1.1) rotate(22deg);
}

/* Content Styling */

ul#index_cards li img {
margin-top:7px;
background:#eee;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 0px 0px 5px #aaa;
-webkit-box-shadow: 0px 0px 5px #aaa;
}

ul#index_cards li p {
margin-top:4px;
text-align:left;
line-height:28px;
}

你可以在这里看到你想要的前景;tubebackgrounds.co.uk/portfolio

谢谢你们。

最佳答案

恐怕 IE8 不支持 CSS3。您将不得不寻找一种替代方法来完成您正在尝试做的事情,或者接受 IE 不会这样做但其他(更好的)浏览器会这样做的事实。

关于css - IE8 缩放过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11684779/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com