You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vue-shop-admin-work/public2/ueditor/dialogs/snapscreen/snapscreen.html

120 lines
4.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE HTML>
<html>
<head>
<!-- 设置页面的字符编码为utf-8确保能正确显示各种字符 -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<!-- 引入外部的JavaScript文件路径为相对路径的../internal.js -->
<script type="text/javascript" src="../internal.js"></script>
<style type="text/css">
/* 通配选择器,将页面中所有元素的文字颜色设置为#838383 */
* {
color: #838383
}
/* 对html和body元素进行样式设置 */
html, body {
/* 设置字体大小为12px */
font-size: 12px;
/* 宽度占满整个视口宽度 */
width: 100%;
/* 高度占满整个视口高度 */
height: 100%;
/* 超出部分隐藏,防止出现滚动条等情况 */
overflow: hidden;
/* 外边距设置为0去除默认的外边距 */
margin: 0px;
/* 内边距设置为0去除默认的内边距 */
padding: 0px;
}
h2 {
/* 设置h2标题的字体大小为16px并且上下外边距自动水平居中 */
font-size: 16px;
margin: 20px auto;
}
.content {
/* 设置内边距上内边距5px右内边距15px下内边距0左内边距15px */
padding: 5px 15px 0 15px;
/* 高度占满父元素高度 */
height: 100%;
}
dt, dd {
/* 去除默认的左外边距和左内边距 */
margin-left: 0;
padding-left: 0;
}
dt a {
/* 将a标签设置为块级元素使其能设置宽高等属性 */
display: block;
/* 设置高度为30px */
height: 30px;
/* 设置行高为30px使文字垂直居中 */
line-height: 30px;
/* 设置宽度为55px */
width: 55px;
/* 设置背景颜色为#EFEFEF */
background: #EFEFEF;
/* 设置边框为1px的实线颜色为#CCC */
border: 1px solid #CCC;
/* 设置左右内边距为10px */
padding: 0 10px;
/* 去除默认的下划线等文本装饰效果 */
text-decoration: none;
}
dt a:hover {
/* 鼠标悬停时的背景颜色设置为#e0e0e0 */
background: #e0e0e0;
/* 鼠标悬停时的边框颜色设置为#999 */
border-color: #999
}
dt a:active {
/* 鼠标点击激活时的背景颜色设置为#ccc */
background: #ccc;
/* 鼠标点击激活时的边框颜色设置为#999 */
border-color: #999;
/* 鼠标点击激活时的文字颜色设置为#666 */
color: #666;
}
dd {
/* 设置行高为20px并且距离上方元素有10px的外边距 */
line-height: 20px;
margin-top: 10px;
}
span {
/* 设置右边内边距为4px */
padding-right: 4px;
}
input {
/* 设置输入框宽度为210px高度为21px背景颜色为白色边框为1px的实线颜色为#d7d7d7内外边距都设置为0 */
width: 210px;
height: 21px;
background: #FFF;
border: 1px solid #d7d7d7;
padding: 0px;
margin: 0px;
}
</style>
</head>
<body>
<div class="content">
<!-- 这里应该是通过脚本动态设置显示的消息内容id为lang_showMsg -->
<h2><var id="lang_showMsg"></var></h2>
<dl>
<!-- dt里的a标签设置了链接点击可在新窗口打开对应的可执行文件id为downlink链接文本内容应该也是通过脚本动态设置id为lang_download -->
<dt><a href="../../third-party/snapscreen/UEditorSnapscreen.exe" target="_blank" id="downlink"><var id="lang_download"></var></a></dt>
<!-- 这里的var标签内容应该也是通过脚本动态设置用于显示步骤相关信息id为lang_step1 -->
<dd><var id="lang_step1"></var></dd>
<!-- 同理这里也是用于显示步骤相关信息id为lang_step2 -->
<dd><var id="lang_step2"></var></dd>
</dl>
</div>
</body>
</html>