jquery弹出层兼容所有浏览器(修复ie8下背景不透明问题)
引用
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.min.js"></script> <script type="text/javascript" src="jquery.reveal.js"></script>
设置ie8下背景透明
<!--[if lt IE 9]> <style> .reveal-modal-bg{filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc000000,endColorstr=#cc000000);} </style> <![endif]-->
@普贞山 修改样式,
.reveal-modal{right: 0%;} //left:50%改right: 0%;
jquery.reveal.ja中 41行 topMeasure=parseInt(modal.css('top')), 改成 topMeasure= 0,
回复