- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个下拉菜单来显示不同的 Google map 。餐厅 map 显示出来,但当我切换到另一张 map (例如公园)时,它会显示一个灰色框,左上角有标记图标,您会在其下方看到另一张 map 的 1 秒 View /闪烁。当我在每个“neighborhood-listing”类中添加“visible”时,它会起作用,但随后会同时显示多个 map ,而不是仅显示一个。
HTML
<div class="explore">
<h4>Explore Your New Neighborhood</h4>
<select id="neighborhood-select">
<option value="Dining">Dining</option>
<option value="Shopping">Shopping</option>
<option value="Schools">Schools</option>
<option value="Parks">Parks</option>
<option value="Hospitals">Hospitals</option>
<option value="Colleges">Colleges</option>
</select>
</div>
<div class="explore-images featured-image">
<div class="neighborhood-listing Dining visible">
<div class="neighborhood-btns">
<div id="map-dining"></div>
</div>
</div>
<div class="neighborhood-listing Shopping ">
<div class="neighborhood-btns">
<div id="map-shopping"></div>
</div>
</div>
<div class="neighborhood-listing Parks ">
<div class="neighborhood-btns">
<div id="map-parks"></div>
</div>
</div>
<div class="neighborhood-listing Hospitals ">
<div class="neighborhood-btns">
<div id="map-hospitals"></div>
</div>
</div>
<div class="neighborhood-listing Colleges ">
<div class="neighborhood-btns">
<div id="map-colleges"></div>
</div>
</div>
<div class="neighborhood-listing Schools ">
<div class="neighborhood-btns">
<div id="map-schools"></div>
</div>
</div>
</div>
CSS
.explore-images .neighborhood-listing,
.explore-images .leasing-plan {
display: none;
}
.explore-images .neighborhood-listing.visible,
.explore-images .leasing-plan.visible {
display: block;
}
.explore {
padding: 2.5% 5%;
background-color: #f2efef;
}
.explore h4 {
margin-top: 0;
margin-bottom: .5em;
}
/* .directory-btns, */
.neighborhood-btns {
position: relative;
top: 0;
right: 0;
}
@media screen and (max-width: 480px) {
.desktop {
display: none;
}
.mobile {
display: block;
}
}
#map-dining, #map-shopping, #map-schools, #map-parks, #map-hospitals, #map-colleges{
width:100%;
height: 400px;
}
我希望从下拉菜单中选择每个 map 时都能正确显示(例如“用餐”),并防止发生另一张 map 的 1 秒 View (在过渡期间),基本上让它顺利过渡到下一个选定的 map 。
链接到JS Fiddle 。
<小时/>已解决
我真的很喜欢 Godwin 的 jsfiddle 的平滑过渡,前提是调整大小也能如此平滑!我也非常喜欢 geocode zip 的 jsfiddle 的工作原理,调整大小非常完美!只是过渡不太顺利,因为在过渡期间它仍然具有米色框 View ,且标记位于左上角。所以我所做的就是将这两个代码结合起来,这几乎就是我想要的。非常感谢大家,非常感谢你们的帮助!
使用工作代码编辑 JS Fiddle: https://jsfiddle.net/sf82/fbt9p701/1/
CSS 已更改:
.explore-images .neighborhood-listing,
.explore-images .leasing-plan {
visibility: hidden;
position: absolute;
height: 400px;
width: 100%;
}
.explore-images .neighborhood-listing.visible,
.explore-images .leasing-plan.visible {
display: block;
visibility: visible;
}
添加了 JS:
jQuery(document).ready(function ($) {
$('#leasing-select, #neighborhood-select, #store-directories-select').change(function () {
var new_image = $(this).val();
$('.explore-images .visible').fadeOut().removeClass('visible');
$('.explore-images .' + new_image).fadeIn(function () {
resizeMap(new_image);
}).addClass('visible');
});
});
function resizeMap(type) {
var typeL = type.toLowerCase();
switch (typeL) {
case 'dining':
google.maps.event.trigger(map, 'resize');
map.setCenter(mapOptions.center);
break;
case 'shopping':
google.maps.event.trigger(map2, 'resize');
map2.setCenter(mapOptions.center);
break;
case 'schools':
google.maps.event.trigger(map3, 'resize');
map3.setCenter(mapOptions.center);
break;
case 'parks':
google.maps.event.trigger(map4, 'resize');
map4.setCenter(mapOptions.center);
break;
case 'hospitals':
google.maps.event.trigger(map5, 'resize');
map5.setCenter(mapOptions.center);
break;
case 'colleges':
google.maps.event.trigger(map6, 'resize');
map6.setCenter(mapOptions.center);
break;
default:
break;
}
}
最佳答案
如果目标元素为 display: none
,Google map 将无法正确呈现。您可以通过使用 visibility
和 position:absolute
属性来解决此问题:http://jsfiddle.net/dd8q234b/7/ 。然而,这仍然存在调整大小的问题。
.explore-images .neighborhood-listing,
.explore-images .leasing-plan {
visibility: hidden;
position: absolute;
height: 400px;
width: 100%;
}
.explore-images .neighborhood-listing.visible,
.explore-images .leasing-plan.visible {
visibility: visible;
}
更好的解决方案可能是使用相同的 map ,但在选择更改时重置标记:https://developers.google.com/maps/documentation/javascript/examples/marker-remove
关于javascript - 下拉菜单和 Google map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33660087/
我试图让我的 jQuery 脚本从单击的链接中提取 url,然后将其插入到我的视频标签中。有什么建议吗? 我试过拼接我从 .html() 中得到的内容,但引号总是搞砸了。
我遇到了 docker 的问题。 场景是这样的:我们使用Codebuild+Packer+docker创建AMI,用于deploy。在这一步中,我们从 Artifactory 中提取图像,并且除了提取
我目前正在学习 RxJS。 在文档中,我找到了这个数组。 我尝试在谷歌上搜索“pull and push javascript”,但我什至不知道如何调用这些实体/概念。我不明白那是什么意思?我假设 S
Title 在小屏幕上,我首先需要标题,然后是文本字段,但在中等以上的屏幕上,我需要相反的方式 - 我已经尝试过推和拉,但它们无法工作 - 有什么想法吗? 最佳答案 根据 Swa
zmq 的某些部分未以可预测的方式运行。 我正在使用 VS2013 和 zmq 3.2.4。为了不在我的 pubsub 框架中“丢失”消息 [旁白:我认为这是一个设计缺陷。我应该能够首先启动我的订阅者
我正在编写一个使用嵌套 Bootstrap 列的页面。我正在使用推/拉让列在移动设备上切换位置,而且效果很好。但是,在桌面上我遇到了一些奇怪的间距问题。嵌套列偏移到父列的右侧。 我设置了一个 fidd
在拉取一些 docker 镜像(但不是全部)时出现此错误: failed to register layer: Error processing tar file(exit status 1): op
我创建了一个 Kubernetes 集群,并为每个节点安装了 docker。 当我尝试使用 docker push local_registry_addr:port/image_id 将图像拉取或推送
没有明确地推/拉单个书签,书签何时从 repo 复制/更新到 repo? 在我对两个本地存储库的测试中,我无法推断出一致的行为。有时从 A 到 B 或 B 到 A 的推/拉会复制/更新书签,有时不会。
在 Bootstrap 3 文档中,他们给出了以下使用 push 和 pull 类更改列顺序 (http://getbootstrap.com/css/#grid-column-ordering) 的
从这个问题开始Three column Bootstrap layout with left sidebar at bottom我了解了 Bootstrap 列推拉。 下面的代码片段几乎可以得到我想要
许多 Repo 函数的签名包括 **kwargs,其中文档说,您可以将参数传递给底层包装的 git 命令。但是,*args 没有位置。为了传递类似标志的参数,如 --all。我原以为它们会像 my_r
如果您将大文件推送/拉到设备上,这真的很烦人,现在无法知道它有多远。是否可以运行 adb push 或 adb pull 并使用“bar”实用程序获取进度条? 这里的主要问题是我认为 adb 需要两个
当我尝试使用 Gitkrakent 向/从 Heroku 推/拉时,GitKraken 告诉我: "Please log in to continue" 请求的“用户/登录”是什么? (我个人 Her
我在 docker 容器中有一个 Jenkins 2.150.1。要安装这个 Jenkins,我只需使用 jenkinsci/blueocean:1.9.0图片。 我创建了一个管道,然后尝试使用我的
我想使用 Jenkins 做下一步: 1- docker pull 2- docker run -i -t 我已经在jenkins上安装了docker插件,但是这可行吗? docker plugi
如果我正在处理一些我不想提交的文件,我只需保存它们。然后我有其他文件想要推送到服务器,但是如果其他人对存储库进行了更改,并且我将它们拉下来,它会要求我 merge 或 rebase ..但是这些选项中
无论出于何种原因,我在 FB 上共享链接时尝试使用的图像都无法加载。给出的确切错误是: 提供了og:image,无法下载。发生这种情况的原因有多种,例如您的服务器使用不受支持的内容编码。爬虫接受 de
今天我买了三星 Galaxy Note 3,它配备了 Android 4.3。由于它太新了,我找不到根植我设备的方法,所以我尝试使用 adb 连接……我失败了。 所以,我用了这个 D:\android
我尝试通过 airflow cli test 命令测试 2 个任务` 第一个任务运行,自动将最后一个控制台推送到 xcom,我按预期在 Airflow GUI 中看到了值 some value 当我通
我是一名优秀的程序员,十分优秀!