Commit ae6d672f authored by guwd's avatar guwd
Browse files

5.2.0默认皮肤

parent 9d5d59b6
This diff is collapsed.
<div class="ms-footer">
<div class="body">
<div class="top">
<div class="top-left">
{ms:channel flag='nav' type='top'}
<div class="ms-footer"> <div class="foot-nav">
<div class="body"> <a href="{ms:global.url/}${field.typelink}" class="nav-item"> ${field.typetitle} </a> {ms:channel }
<div class="top"> <div>
<div class="top-left"> <a href="{ms:global.url/}${field.typelink}" class="item"> ${field.typetitle} </a>
{ms:channel flag='nav'} </div> {/ms:channel}
<div class="foot-nav"> </div> {/ms:channel}
<a href="{ms:global.url/}${field.typelink}" </div>
target="_blank" <div class="top-right">
class="nav-item"> <div class="qr">
父栏目名称 <img title="" alt="" src="https://iph.href.lu/100x100" class="pic">
</a> <span class="text"> 公众号 </span>
{ms:channel } </div>
<a href="{ms:global.url/}${field.typelink}" <div class="qr">
target="_blank" <img title="" alt="" src="https://iph.href.lu/100x100" class="pic">
class="item"> <span class="text"> 公众号 </span>
子栏目名称 </div>
</a> </div>
{/ms:channel} </div>
</div> <span class="copyright"> <el-link href="https://www.mingsoft.net/" type="primary">© 江西铭软科技有限公司</el-link> 2012-至今 All Rights Reserved. Powered by MCms </span>
{/ms:channel} </div> <span class="power"> @该网页由 <el-link href="https://designer.mingsoft.net/" type="primary">MDesigner</el-link> 制作完成 </span>
<div class="top-right"> </div>
<div class="qr"> </div>
<img \ No newline at end of file
title=""
alt=""
src="https://iph.href.lu/100x100"
class="pic" />
<span class="text" >
公众号
</span>
</div>
<div class="qr">
<img
title=""
alt=""
src="https://iph.href.lu/100x100"
class="pic" />
<span class="text" >
公众号
</span>
</div> </div> </div>
<span class="copyright" >
© 江西铭软科技有限公司 2020 All Rights Reserved. Powered by MCms
</span>
<span class="power" >
@该网页由MDesigner制作完成
</span>
</div> </div>
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
html,body{margin:0;padding:0;}
.iw_poi_title {color:#CC5522;font-size:14px;font-weight:bold;overflow:hidden;padding-right:13px;white-space:nowrap}
.iw_poi_content {font:12px arial,sans-serif;overflow:visible;padding-top:4px;white-space:-moz-pre-wrap;word-wrap:break-word}
</style>
<script type="text/javascript" src="http://api.map.baidu.com/api?key=&v=1.1&services=true"></script>
</head>
<body>
<div style="height:828px;border:#ccc solid 1px;" id="dituContent"></div>
</body>
<script type="text/javascript">
function initMap(){
createMap();//
setMapEvent();//
addMapControl();//
addMarker();//
}
function createMap(){
var map = new BMap.Map("dituContent");//
var point = new BMap.Point(116.301313,39.832434);//
map.centerAndZoom(point,15);//�
window.map = map;//
}
function setMapEvent(){
map.enableDragging();//
map.enableScrollWheelZoom();//
map.enableDoubleClickZoom();//
map.enableKeyboard();//
}
//
function addMapControl(){
//
var ctrl_nav = new BMap.NavigationControl({anchor:BMAP_ANCHOR_TOP_LEFT,type:BMAP_NAVIGATION_CONTROL_LARGE});
map.addControl(ctrl_nav);
//
var ctrl_ove = new BMap.OverviewMapControl({anchor:BMAP_ANCHOR_BOTTOM_RIGHT,isOpen:1});
map.addControl(ctrl_ove);
//
var ctrl_sca = new BMap.ScaleControl({anchor:BMAP_ANCHOR_BOTTOM_LEFT});
map.addControl(ctrl_sca);
}
//
var markerArr = [{title:"中建材信云智联科技有限公司",content:"地址:北京市丰台区南四路环西路186号汉威国际广场二区9号楼2层",point:"116.301313|39.832434",isOpen:1,icon:{w:23,h:25,l:46,t:21,x:9,lb:12}}
];
//
function addMarker(){
for(var i=0;i<markerArr.length;i++){
var json = markerArr[i];
var p0 = json.point.split("|")[0];
var p1 = json.point.split("|")[1];
var point = new BMap.Point(p0,p1);
var iconImg = createIcon(json.icon);
var marker = new BMap.Marker(point,{icon:iconImg});
var iw = createInfoWindow(i);
var label = new BMap.Label(json.title,{"offset":new BMap.Size(json.icon.lb-json.icon.x+10,-20)});
marker.setLabel(label);
map.addOverlay(marker);
label.setStyle({
borderColor:"#808080",
color:"#333",
cursor:"pointer"
});
(function(){
var index = i;
var _iw = createInfoWindow(i);
var _marker = marker;
_marker.addEventListener("click",function(){
this.openInfoWindow(_iw);
});
_iw.addEventListener("open",function(){
_marker.getLabel().hide();
})
_iw.addEventListener("close",function(){
_marker.getLabel().show();
})
label.addEventListener("click",function(){
_marker.openInfoWindow(_iw);
})
if(!!json.isOpen){
label.hide();
_marker.openInfoWindow(_iw);
}
})()
}
}
//����InfoWindow
function createInfoWindow(i){
var json = markerArr[i];
var iw = new BMap.InfoWindow("<b class='iw_poi_title' title='" + json.title + "'>" + json.title + "</b><div class='iw_poi_content'>"+json.content+"</div>");
return iw;
}
//һ��Icon
function createIcon(json){
var icon = new BMap.Icon("http://app.baidu.com/map/images/us_mk_icon.png", new BMap.Size(json.w,json.h),{imageOffset: new BMap.Size(-json.l,-json.t),infoWindowOffset:new BMap.Size(json.lb+5,1),offset:new BMap.Size(json.x,json.h)})
return icon;
}
initMap();//
</script>
</html>
\ No newline at end of file
This diff is collapsed.
Supports Markdown
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