123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>幻灯片详情</title>
- <script src="../js/lib/jquery-1.9.1/jquery.min.js"></script>
- <script src="../js/config/base_config.js"></script>
- <script src="../js/lib/pageList.js"></script>
- <script src="../untils/jqueryUI/jquery-ui.js"></script>
- <script src="../untils/jqueryUI/jquery-form.js" ></script>
- <link href="../untils/jqueryUI/jquery-ui.css" rel="stylesheet" />
- <script src="../My97DatePicker/WdatePicker.js"></script>
- <link href="../css/css01.css" rel="stylesheet" type="text/css">
- <script src="../js/lib/ajaxRedirect.js"></script>
- <script src="js/pptnew.js"></script>
- <!--弹出框-->
- <link href="../css/Showbo.css" rel="stylesheet" type="text/css">
- <script type="text/javascript" src="../js/Showbo.js"></script>
- <style>
- input{
- border: 1px solid #ccc;
- }
- </style>
- </head>
- <body>
- <style>
- .titleInput{
- line-height: 40px;
- width: 23%;
- }
- .imgContent{
- width: 80%;
- height: 300px;
- }
- .pptimgcontentDiv{
- width: 25%;
- height: 277px;
- float: left;
- margin-left: 50px;
- background-color: #00a2d4;
- margin-top:20px;
- border-radius: 5px;
- overflow: hidden;
- }
- .pptimgcontentDivPlus{
- width: 25%;
- float: left;
- background-color: #00a2d4;
- font-size: 172px;
- text-align: center;
- color: #ccc;
- margin-left: 50px;
- margin-top:20px;
- height: 277px;
- border-radius: 5px;
- }
- .pptimgcontentDiv img{
- width: 100%;
- height: 200px;
- }
- h1{
- margin: 40px 0 0 40px;
- font-size: 19px;
- }
- input{
- margin:12px 0 0 40px;
- }
- .btn-self{
- width: 70px;
- margin: 17px auto;
- display: block;
- background:#78cd9a;
- }
- .btn-modify{
- width: 133px;
- height: 39px;
- margin: 6% 33%;
- }
- .input_text{
- width: 322px;
- margin: 0;
- border: none;
- height: 32px;
- display: block;
- background:#ccc;
- }
- </style>
- <h1>标题</h1>
- <input type="text" class="titleInput" />
- <br/>
- <br/>
- <div class="imgContent" >
- <!--存放图片div-->
- </div>
- <!--<div id="showDiv" style="display: none">-->
- <!--<form action="/src/ppt/addPPT" enctype="multipart/form-data" method="post">-->
- <!--<input type="file" name="img" id="img"/>-->
- <!--<input type="submit" value="提交" />-->
- <!--</form>-->
- <!--</div>-->
- <div id="iUserLogin" style="display: none;" >
- <div style="padding-bottom:0;">
- <form id="iUserLoginForm" enctype="multipart/form-data" method="post">
- <input type="hidden" id="name" name="name"/>
- <input type="file" name="img" id="img1" onchange="CheckFile(this.value,this)"/>
- <h3 style="color: red">上传图片尺寸为:1920*791像素,非此像素的话,网页显示将异常</h3>
- </form>
- </div>
- </div>
- <div style="display: none;" id="sc">
- </div>
- <button class="btn-modify" onclick="toHrefPage()">保存</button>
- </body>
- </html>
|