我正在使用 jQuery 并尝试在受 jQuery 影响但无法使其正常工作的图像上实现 max-width 属性。谁能帮我?这是我所有的编码:
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script>
$(window).load(function () {
setTimeout(function () {
$('div.fade > div') . fadeIn(3000) // 3 second fade in
}, 2000) // after 2 seconds.
})
</script>
<style>
.img{
max-width: 100%;
}
html
{
background-image:url(purplegrad.png);
background-position: center;
}
.container
{
position:relative;
margin-top:100px;
}
.fade
{
position:relative;
width:800px;
z-index:1;
margin:auto;
}
.inside
{
position: absolute;
display: none;
z-index:2;
top:0;
left:0;
}
</style>
<body>
<div class="container">
<div class="fade">
<img class="img" src="namelarge.png" />
<div class="inside">
<img class="img" src="nameglow.png" />
</div>
</div>
</div>
</body>
</html>
这是我的 jQuery 的一个例子,有人在 jQuery 论坛上帮助我:http: //jsfiddle.net/jakecigar/HS2f9/