Commit 1537fff0 authored by 刘丹's avatar 刘丹

提示框

parent 12c3509e
<script src='/resource/lib/js/require.min.js' data-main='/resource/js/main?version=111' charset='utf-8'></script> <script src='/resource/lib/js/require.min.js' data-main='/resource/js/main?version=1vsdfv11' charset='utf-8'></script>
\ No newline at end of file \ No newline at end of file
...@@ -32,3 +32,12 @@ ...@@ -32,3 +32,12 @@
</li> </li>
</ul> </ul>
</nav> </nav>
<!-- 提示成功模态框(Modal) -->
<div class="successModel">
<div class="successModel-center">
<p>
提交成功!
</p>
</div>
</div>
...@@ -165,4 +165,6 @@ ...@@ -165,4 +165,6 @@
</div> </div>
</div><!-- /.modal-content --> </div><!-- /.modal-content -->
</div><!-- /.modal --> </div><!-- /.modal -->
</div> </div>
\ No newline at end of file
...@@ -202,4 +202,41 @@ body { ...@@ -202,4 +202,41 @@ body {
} }
.clickbg{ .clickbg{
background: #ff9419!important; background: #ff9419!important;
} }
\ No newline at end of file .successModel{
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
overflow: hidden;
outline: 0;
background:rgba(0,0,0,0.6);
display: none;
}
.successModel-center{
position: relative;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #999;
border: 1px solid rgba(0,0,0,.2);
border-radius: 6px;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
box-shadow: 0 3px 9px rgba(0,0,0,.5);
-webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
box-shadow: 0 5px 15px rgba(0,0,0,.5);
width: 200px;
height: 60px;
margin: 0 auto;
margin-top: 200px;
}
.successModel-center p{
padding: 15px;
font-size: 24px;
color: #333;
text-align: center;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment