12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglibf.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>${fns:getConfig("productName")}</title>
- <link rel="stylesheet" href="${ctxStaticWeb}/css/base.css" />
- <link rel="stylesheet" href="${ctxStaticWeb}/css/second.css" />
- <script src="${ctxStaticWeb}/js/jquery-1.8.3.min.js" type="text/javascript"></script>
- <script>
- $(document).ready(function() {
- $('.videoWrapper').bind('contextmenu',function() { return false; });
- $('#myvideo').bind('contextmenu',function() { return false; });
- var init_num=0;
- var myvideo= $("#myvideo")[0];//document.getElementById('myvideo');
- })
- </script>
- <style type="text/css">
- video::-internal-media-controls-download-button {
- display:none;
- }
- video::-webkit-media-controls-enclosure {
- overflow:hidden;
- }
- video::-webkit-media-controls-panel {
- width: calc(100% + 30px);
- }
- </style>
- </head>
- <body>
- <%@ include file="/webpage/modules/web/top.jsp"%>
- <div class="new w">
- <div class="position">当前位置:<a href="${ctx}/">网站首页</a> > <a href="${ctxF}/columnNews">专题专栏</a> > 详细页</div>
- </div>
- <div class="new w" style="border:1px solid #ccc">
- <div class="text_top">
- <h1>${news.title}</h1>
- <hr>
- <h2>发布日期:<span><fmt:formatDate value="${news.createDate}" pattern="yyyy-MM-dd"/></span> 文章来源:<span>${news.source}</span> </h2>
- </div>
- <div class="text">
- <c:if test="${news.url1 != null && news.url1 !=''}">
- <div class="img">
- <video scrolling="no" height="100%" controlsList="nodownload" autoplay style="scrolling:no;background-color: black;" width="100%" src='${news.url1}' controls="controls" id="myvideo">
- 您的浏览器不支持视频标签.
- </video>
- </div>
- </c:if>
- <p>${fns:unescapeHtml(news.content)}</p>
- </div>
- <%--<div class="text">
- <div class="img"><img src="./img/pic_01.png"></div>
- <p>${fns:unescapeHtml(news.content)}</p>
- </div>--%>
- </div>
- <div class="footer">
- <%@ include file="/webpage/modules/web/footer.jsp"%>
- </div>
- </body>
- </html>
|