555 lines
18 KiB
HTML
555 lines
18 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||
<meta name="renderer" content="webkit" />
|
||
<meta name="format-detection" content="telephone=no" />
|
||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||
<meta name="format-detection" content="telephone=no" />
|
||
<meta name="applicable-device" content="pc,mobile" />
|
||
<link rel="shortcut icon" href="/favicon.ico" />
|
||
<title>熙讯-服务支持-下载专区</title>
|
||
<meta name="keywords" content="熙讯,LED控制系统,LED控制卡,播控系统,软件服务,熙讯下载,解决方案提供商-熙讯、熙讯云科技、熙讯电子科技有限公司、熙讯官网、熙讯下载" />
|
||
<meta name="description"
|
||
content="上海熙讯电子科技有限公司是全球户外数字传媒与LED显示控制系统解决方案服务商,致力于以互联网技术和智能系统推动行业的产业升级,为打造数字智慧城市贡献力量。10年来我们精耕于这一领域,凭借卓越的创新能力、突出的定制能力、优秀的服务能力、赢得了全球客户的信任!" />
|
||
<link rel="stylesheet" href="/static/iconfont/iconfont.css" />
|
||
<link rel="stylesheet" type="text/css" href="/static/layui/css/layui.css" />
|
||
<link rel="stylesheet" type="text/css" href="/static/css/layout.css" />
|
||
|
||
<script type="text/javascript" src="/static/js/jquery.min.js"></script>
|
||
<script type="text/javascript" src="/static/js/BeerSlider.js"></script>
|
||
<meta name="Author" content="xixun" />
|
||
</head>
|
||
|
||
<script>
|
||
var type = navigator.appName;
|
||
if (type == "Netscape") var lang = navigator.language;
|
||
else var lang = navigator.userLanguage;
|
||
var lang = lang.substr(0, 2);
|
||
|
||
//英文路径
|
||
var url = window.location;
|
||
//获取网页的来路
|
||
|
||
function getQueryString(name) {
|
||
const url_string = window.location.href; // window.location.href
|
||
const url = new URL(url_string);
|
||
if (url.searchParams.get(name) != null) {
|
||
Cookie_Set("language", url.searchParams.get(name));
|
||
}
|
||
}
|
||
getQueryString("language");
|
||
console.log(!Cookie_Get("language"), lang);
|
||
if (!Cookie_Get("language") && lang == "en") {
|
||
window.location.href = "http://sysolution.net/";
|
||
}
|
||
|
||
function Cookie_Set(name, val) {
|
||
// var strsec = getsec(time);
|
||
var exp = new Date();
|
||
// exp.setTime(exp.getTime() + strsec * 1);
|
||
document.cookie = name + "=" + val + ";path=/";
|
||
}
|
||
function Cookie_Get(name) {
|
||
var arr,
|
||
reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)");
|
||
if ((arr = document.cookie.match(reg))) {
|
||
return arr[2];
|
||
} else {
|
||
return null;
|
||
}
|
||
}
|
||
function getsec(str) {
|
||
var str1 = str.substring(1, str.length) * 1;
|
||
var str2 = str.substring(0, 1);
|
||
if (str2 == "s") {
|
||
return str1 * 1000;
|
||
} else if (str2 == "h") {
|
||
return str1 * 60 * 60 * 1000;
|
||
} else if (str2 == "d") {
|
||
return str1 * 24 * 60 * 60 * 1000;
|
||
}
|
||
}
|
||
|
||
</script>
|
||
<style>
|
||
.service_Software .right .con1 .box {
|
||
width: 100%;
|
||
}
|
||
|
||
/* 弹框 */
|
||
.consumerOverlay {
|
||
display: none;
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
background-color: rgba(0, 0, 0, 0.5);
|
||
/* 设置背景颜色为半透明黑色 */
|
||
z-index: 9999;
|
||
/* 设置 z-index 值确保遮罩层位于其他元素之上 */
|
||
/* display: flex; */
|
||
justify-content: center;
|
||
}
|
||
|
||
.consumerContent {
|
||
display: none;
|
||
position: relative;
|
||
z-index: 10000;
|
||
background-color: #ffffff;
|
||
width: 30%;
|
||
height: 30%;
|
||
margin-top: 10%;
|
||
border-radius: 2%;
|
||
}
|
||
|
||
.consumerHeader {
|
||
border-radius: 2%;
|
||
line-height: 45px;
|
||
font-size: 18px;
|
||
text-align: center;
|
||
height: 45px;
|
||
width: 100%;
|
||
background-color: #eeeeee;
|
||
}
|
||
|
||
.consumerMiddle {
|
||
padding: 20px 20px;
|
||
font-size: 15px;
|
||
width: 100%;
|
||
height: 62%;
|
||
}
|
||
|
||
.consumerBottom {
|
||
width: 100%;
|
||
height: 50px;
|
||
margin-right: 10px;
|
||
position: absolute;
|
||
bottom: 0px;
|
||
display: flex;
|
||
justify-content: flex-end;
|
||
align-items: center;
|
||
}
|
||
|
||
.consumerBottom button {
|
||
background-color: lightsteelblue;
|
||
color: #fff;
|
||
border: none;
|
||
cursor: pointer;
|
||
font-size: 0.8333vw;
|
||
padding: 8px 12px;
|
||
border-radius: 2px;
|
||
}
|
||
|
||
.bgRed {
|
||
background-color: #d35c5d;
|
||
}
|
||
|
||
.bgBlue {
|
||
background-color: lightsteelblue;
|
||
}
|
||
|
||
.form-group {
|
||
display: flex;
|
||
align-items: center;
|
||
margin-bottom: 0.6333vw;
|
||
}
|
||
|
||
.form-group>div {
|
||
margin-right: 0.6333vw;
|
||
font-size: .8333vw;
|
||
}
|
||
|
||
|
||
.form-group .form-control,
|
||
.form-group .form-file,
|
||
.form-group select {
|
||
padding-left: 8px;
|
||
padding: 8px 30px 8px 14px;
|
||
border: 1px solid #ccc;
|
||
border-radius: 0.2vw;
|
||
font-size: 0.8333vw;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.form-group .form-file {
|
||
font-size: 0.8333vw;
|
||
}
|
||
|
||
.form-group select {
|
||
margin-right: 0.6333vw;
|
||
}
|
||
|
||
.form-group button {
|
||
background-color: lightsteelblue;
|
||
color: #fff;
|
||
border: none;
|
||
cursor: pointer;
|
||
font-size: 0.8333vw;
|
||
padding: 8px 12px;
|
||
border-radius: 2px;
|
||
}
|
||
|
||
.btns {
|
||
background-color: lightsteelblue;
|
||
color: #fff;
|
||
border: none;
|
||
cursor: pointer;
|
||
font-size: 0.8333vw;
|
||
padding: 8px 12px;
|
||
border-radius: 2px;
|
||
}
|
||
|
||
.layui-table {
|
||
width: 100%;
|
||
margin: 0px;
|
||
}
|
||
|
||
.layui-table thead th,
|
||
.layui-table thead td {
|
||
text-align: center;
|
||
}
|
||
|
||
.layui-table thead th {
|
||
background-color: #9dc9ff;
|
||
font-size: 0.9375vw;
|
||
font-weight: 700;
|
||
}
|
||
|
||
.layui-table tbody th,
|
||
.layui-table tbody td {
|
||
font-size: 0.8333vw;
|
||
}
|
||
|
||
.layui-table td,
|
||
.layui-table th {
|
||
position: relative;
|
||
height: 35px;
|
||
line-height: 35px;
|
||
}
|
||
|
||
.layui-table td,
|
||
.layui-table th {
|
||
padding: 0px;
|
||
}
|
||
|
||
@media screen and (max-width: 460px) {
|
||
.form-group {
|
||
display: block;
|
||
}
|
||
|
||
.form-group>div {
|
||
font-size: 16px;
|
||
margin-bottom: 5px;
|
||
display: none;
|
||
}
|
||
|
||
.form-group .form-control {
|
||
width: 80%;
|
||
}
|
||
|
||
.form-group .form-control,
|
||
.form-group .form-file,
|
||
.form-group select {
|
||
|
||
font-size: 16px;
|
||
}
|
||
|
||
.form-group .form-file {
|
||
font-size: 16px;
|
||
}
|
||
|
||
.form-group button {
|
||
font-size: 16px;
|
||
}
|
||
|
||
.layui-table tbody th,
|
||
.layui-table tbody td {
|
||
font-size: 16px;
|
||
}
|
||
|
||
.consumerContent {
|
||
width: 80%;
|
||
height: 40%;
|
||
}
|
||
|
||
.consumerBottom button {
|
||
font-size: 16px;
|
||
}
|
||
}
|
||
|
||
|
||
</style>
|
||
|
||
<body>
|
||
<div class="header head3">
|
||
#include(navbar)
|
||
</div>
|
||
|
||
|
||
<div class="Lcrumbs">
|
||
<div class="container1260">
|
||
<a href="javascript:;">下载专区</a>
|
||
</div>
|
||
</div>
|
||
<div class="Bg">
|
||
<div class="container1260">
|
||
<div class="service_Software clearfix">
|
||
<!-- 程序注意这个右侧导航栏结构不一样,这个有三级 -->
|
||
<div class="publicLeft publicLeft_download">
|
||
<!-- 如果导航没有cat 则默认第一个下拉111-->
|
||
<div class="li active2">
|
||
<h5>软件<div class="liOn"></div>
|
||
</h5>
|
||
<div class="Downul2">
|
||
<div class="ul2">
|
||
<div class="li3">
|
||
<div class="ul3 active">
|
||
<a href="/service/resource/software/LedOK Express/index.html">LedOK
|
||
Express(PC端局域网节目编辑调试软件)</a>
|
||
<a href="/service/resource/software/LEDOK Lite/index.html">LEDOK Lite(手机APP 异步播放盒)</a>
|
||
<a class="active" href="/service/resource/software/I Led/index.html">I Led(手机APP 动画图文卡)</a>
|
||
<a href="/service/resource/software/LedSet/index.html">LedSet2.3(Y08配屏软件)</a>
|
||
<a href="/service/resource/software/oldProduct/index.html">老产品及停产配套软件</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
<div class="li ">
|
||
<h5>产品文档<div class="liOn"></div>
|
||
</h5>
|
||
<div class="Downul2">
|
||
<div class="ul2">
|
||
<div class="li3">
|
||
<div class="t ">控制系统<div class="li3On"></div>
|
||
</div>
|
||
<div class="ul3 ">
|
||
<a
|
||
href="/service/resource/product_document/control_system/commerce_display/index.html">智慧商显同异步播放盒系列</a>
|
||
<a class=""
|
||
href="/service/resource/product_document/control_system/lamp_pole/index.html">灯杆车载等异步全彩系列</a>
|
||
<a class="" href="/service/resource/product_document/control_system/car_load/index.html">动画图文卡系列</a>
|
||
<a class="" href="/service/resource/product_document/control_system/LCD/index.html">LCD系列</a>
|
||
<a class="" href="/service/resource/product_document/control_system/sync_send/index.html">同步发送卡</a>
|
||
<a class="" href="/service/resource/product_document/control_system/receive_card/index.html">接收卡</a>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="ul2">
|
||
<div class="li3">
|
||
<div class="t ">视频处理<div class="li3On"></div>
|
||
</div>
|
||
<div class="ul3 ">
|
||
<a class=""
|
||
href="/service/resource/product_document/video_process/2-in-1_video_process/index.html">二合一视频处理器</a>
|
||
<a class=""
|
||
href="/service/resource/product_document/video_process/independent_control/index.html">独立主控</a>
|
||
<a class=""
|
||
href="/service/resource/product_document/video_process/video_splicer/index.html">视频拼接器</a>
|
||
<a class=""
|
||
href="/service/resource/product_document/video_process/multimedia_server/index.html">多媒体服务器</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="ul2">
|
||
<div class="li3">
|
||
<div class="t ">配件<div class="li3On"></div>
|
||
</div>
|
||
<div class="ul3 ">
|
||
<a class="" href="/service/resource/product_document/control_system/accessory/index.html">配件</a>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="ul2">
|
||
<div class="li3">
|
||
<div class="t ">软件服务<div class="li3On"></div>
|
||
</div>
|
||
<div class="ul3 ">
|
||
<a class=""
|
||
href="/service/resource/product_document/xixun_software/SingleMachine/index.html">PC端局域网软件</a>
|
||
<a class="" href="/service/resource/product_document/xixun_software/AIPS/index.html">云平台</a>
|
||
<a class="" href="/service/resource/product_document/xixun_software/APP/index.html">APP</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="ul2">
|
||
<div class="li3">
|
||
<div class="t ">老产品系列<div class="li3On"></div>
|
||
</div>
|
||
<div class="ul3 ">
|
||
<a class="" href="/service/resource/product_document/oldProduct/index.html">老产品系列</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
<div class="li ">
|
||
<h5>固件程序<div class="liOn"></div>
|
||
</h5>
|
||
<div class="Downul2">
|
||
<div class="ul2">
|
||
<div class="li3">
|
||
|
||
<div class="ul3 active">
|
||
<a href="/service/resource/firmware_program/y0sy0a.html">Y0s/Y0a系列</a>
|
||
<a href="/service/resource/firmware_program/y08.html">Y08系列</a>
|
||
<a href="/service/resource/firmware_program/y4ay1gy1cm5h.html">Y4a/Y1g/Y1c/M5h系列</a>
|
||
<a href="/service/resource/firmware_program/y5cm7le63.html">Y5c/M7l/E63系列</a>
|
||
<a href="/service/resource/firmware_program/y37y35.html">Y37/Y35系列</a>
|
||
<a href="/service/resource/firmware_program/st5m7s.html">St5/M7s系列</a>
|
||
<a href="/service/resource/firmware_program/m5sy5am6s.html">M5s/Y5a/M6s系列</a>
|
||
<a href="/service/resource/firmware_program/kd/index.html">KD系列配件</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
<div class="right">
|
||
<div class="tit">I Led(手机APP 动画图文卡) <a id="openModalBtn" style="float: right;"
|
||
onclick="openPasswordDia()">素材管理</a></div>
|
||
<div class="con1">
|
||
<div class="list2">
|
||
<div class="li clearfix">
|
||
<div style="width: 100%;display: flex;justify-content: space-around;">
|
||
<div style="width: 32%;">
|
||
<img src="/static/products/xixun_software/APP/I Led/img/iled_Android.png" alt="" />
|
||
<div style="text-align: center;">Android</div>
|
||
</div>
|
||
<div style="width: 32%;">
|
||
<img src="/static/products/xixun_software/APP/I Led/img/iled_ios.png" alt="" />
|
||
<div style="text-align: center;">IOS</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="consumerOverlay" style="display: none;">
|
||
<div class="consumerContent" style="display: none;">
|
||
<div class="consumerHeader">
|
||
<span>请输入密码</span>
|
||
</div>
|
||
<div class="consumerMiddle">
|
||
<form>
|
||
<div class="form-group">
|
||
<div>请输入密码:</div>
|
||
<input class="form-control" type="password" id="passwordInput" placeholder="请输入密码" required>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
<div class="consumerBottom">
|
||
<button type="button" onclick="consumerClose()"
|
||
style="background-color:lightsteelblue ;margin-right: 15px;" class="btn-default">取消</button>
|
||
<button type="button" onclick="consumerConfirm()" class="btn-primary"
|
||
style="background-color:lightsteelblue ;margin-right: 10px;">确定</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
#include(footer)
|
||
<div class="Topping" id="ScrollTop"><i class="iconfont icon_top1"></i></div>
|
||
|
||
</body>
|
||
|
||
</html>
|
||
|
||
<!--百度分享脚本-->
|
||
<script type="text/javascript" src="/static/js/share.js"></script>
|
||
<!--select模拟插件-->
|
||
<script type="text/javascript" src="/static/js/select2.min.js"></script>
|
||
<!--省市区三级联动-->
|
||
<script type="text/javascript" src="https://pv.sohu.com/cityjson"></script>
|
||
<script type="text/javascript" src="/static/js/jquery.citys.js"></script>
|
||
<!--wow入场插件-->
|
||
<script type="text/javascript" src="/static/js/wow.min.js"></script>
|
||
<!-- 数字滚动插件 -->
|
||
<script type="text/javascript" src="/static/js/jquery.counterup.min.js"></script>
|
||
<script type="text/javascript" src="/static/js/waypoints.min.js"></script>
|
||
<!--swiper插件-->
|
||
<script type="text/javascript" src="/static/js/swiper.jquery.min.js"></script>
|
||
<!--瀑布流插件-->
|
||
<script src="/static/js/modernizr.custom.js"></script>
|
||
<script src="/static/js/masonry.pkgd.min.js"></script>
|
||
<script src="/static/js/imagesloaded.pkgd.min.js"></script>
|
||
<script src="/static/js/classie.js"></script>
|
||
<script src="/static/js/AnimOnScroll.js"></script>
|
||
<!--自定义-->
|
||
<script type="text/javascript" src="/js/layout.js"></script>
|
||
<script src="/static/layui/layui.js" charset="utf-8"></script>
|
||
<script>
|
||
layui.use(["laypage", "layer"], function () {
|
||
var laypage = layui.laypage,
|
||
layer = layui.layer;
|
||
|
||
//总页数低于页码总数
|
||
laypage.render({
|
||
elem: "demo0",
|
||
count: "4",
|
||
curr: "1",
|
||
limit: "12",
|
||
prev: " ",
|
||
next: " ",
|
||
jump: function (obj, first) {
|
||
//首次不执行
|
||
if (!first) {
|
||
//do something
|
||
location.href = "/service/resource/index_" + obj.curr + ".html" + "?cat=" + "6";
|
||
}
|
||
},
|
||
});
|
||
});
|
||
$(".service_Software .right .con1 .box .UpdateSmBox").on('click', function () {
|
||
$(this).siblings(".Description_popUp").fadeIn()
|
||
})
|
||
$(".Description_popUp i").on('click', function () {
|
||
$(".Description_popUp").fadeOut()
|
||
})
|
||
$(".Description_popUp .con .off").on('click', function () {
|
||
$(".Description_popUp").fadeOut()
|
||
})
|
||
|
||
|
||
|
||
function openPasswordDia() {
|
||
$(".consumerOverlay").css({ "display": "flex" })
|
||
$(".consumerContent").css({ "display": "block" })
|
||
}
|
||
function consumerClose() {
|
||
$(".consumerOverlay").css({ "display": "none" })
|
||
$(".consumerContent").css({ "display": "none" })
|
||
$("#passwordInput").val(null)
|
||
}
|
||
function consumerConfirm() {
|
||
$(".consumerOverlay").css({ "display": "none" })
|
||
$(".consumerContent").css({ "display": "none" })
|
||
|
||
|
||
var password = $("#passwordInput").val(); // 获取输入的密码
|
||
|
||
// 这里替换成你的密码验证逻辑
|
||
if (password === "xixun888") {
|
||
// 密码正确,跳转到链接
|
||
window.location.href = "/service/resource/software/I Led/materials_management.html"; // 替换成你的链接
|
||
$("#passwordInput").val(null)
|
||
} else {
|
||
alert("密码错误!");
|
||
}
|
||
}
|
||
|
||
</script> |