我有 2 张图片,它们都在同一个 div 中。我已将z-index
一个图像的 设置为 -1 并使用margin-bottom
.
这是我的代码:
<div data-role="page" id="Mycom" class="background">
<div data-role="header" class="header" data-position="fixed" data-tap-toggle="false"></div>
<div data-role="content">
<center>
<h2>Headlines</></h2>
<div> <a href="#" id="indrotate"><img src="Image/right.png" style="width:30%;z-index:-1;margin-bottom:-30% !important;margin-left:70% !important;" /></a>
<img src="SlicedImages/bground2.png" id="indimage" style="height:auto; max-height:80%; width:auto; max-width:90%;" />
</div>
</center>
<center> <a href="#" data-role="none" data-inline="true" data-transition="none"><img src="Image/Next.png" width="200px" height ="10%"></a>
</center>
</div>
</div>
<!-- ind Page end -->
在我的 js 文件中,我有:
$(document).on('pagebeforeshow','#Mycom',function(e,data){
$('#indrotate').on('click',function(){
alert("indrotate");
});
});
我犯了什么错误?