Home > php教程 > PHP开发 > How to modify infowindow style in arcgis for js

How to modify infowindow style in arcgis for js

高洛峰
Release: 2016-12-08 10:43:43
Original
1684 people have browsed it

Method 1:

function popup()
{
  $(".esriPopup .titlePane").css({
'background-color':'rgba(64,64,64,0.8)'
  })
  $(".esriPopup .contentPane").css({
'background-color':'rgba(64,64,64,0.8)',
'color':'#FFFFFF'
  })
  $(".esriPopup .actionsPane").css({
'background-color':'rgba(64,64,64,0.8)'
  })
}
Copy after login

Method 2:

.esriPopup .esriPopupWrapper
{
background-image: url(../images/beijingtu1.png);
background-size:100% 100%;
box-shadow: 0 0 0 #777777;
  -webkit-box-shadow: 0 0 0 #777777;
  padding:3em;
}
.esriPopup .titlePane
{
background-color:rgba(64,64,64,0);
}
.esriPopup .contentPane
{
background-color:rgba(64,64,64,0);
color:#FFFFFF;
scrollbar-base-color: #373737;
  scrollbar-3dlight-color: #4c4c4c;
  scrollbar-highlight-color: #373737;
  scrollbar-track-color: #808080;
  scrollbar-arrow-color: black;
  scrollbar-shadow-color: #373737;
  scrollbar-dark-shadow-color: #373737;
}
.esriPopup .actionsPane
{
background-color:rgba(64,64,64,0);
}
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template