- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我不明白为什么这段代码不起作用。用户可以单击一个按钮来展开粘性页脚。我使用 jQuery 为页脚设置动画(通过增加 #site-footer
的高度)。单击按钮后出现问题:#ask-offer
div 被隐藏。
你可以看到下面的问题:
jQuery(document).ready(function($) {
'use strict';
var footer = $('#site-footer');
var footerHeight = 0;
$('#site-footer #ask-offer').on('click', function() {
// Menu already open
if (footer.hasClass('open')) {
footer.removeClass('open');
$('#site-footer').animate({ height: footerHeight }, 500);
}
// Menu close
else {
footer.addClass('open');
footerHeight = $('#site-footer').height();
$('#site-footer').animate({ height: 150 }, 500);
}
});
});
html, body {
background: #000;
}
#wrapper {
position: relative;
height: 100%;
width: 100%;
min-width: 800px;
}
.wrapper {
position: relative;
width: 800px;
margin: 0 auto;
}
footer#site-footer {
position: fixed;
bottom: 0px;
left: 0px;
right: 0px;
height: 80px;
width: 100%;
background-color: #FFF;
z-index: 300;
}
#site-footer #shadow {
position: absolute;
top: 8px;
left: 35px;
right: 35px;
height: 40px;
background-color: #FFF;
-webkit-box-shadow: 0px -15px 35px -12px rgba(0,0,0,0.5);
-moz-box-shadow: 0px -15px 35px -12px rgba(0,0,0,0.5);
box-shadow: 0px -15px 35px -12px rgba(0,0,0,0.5);
z-index: 10;
}
#site-footer #ask-offer {
position: absolute;
top: -22px;
left: 30px;
height: 32px;
width: auto;
background-color: #FFF;
z-index: 30;
}
#site-footer #ask-offer a {
position: relative;
display: inline-block;
height: 100%;
padding: 0 70px;
text-decoration: underline;
color: #000;
}
#site-footer #ask-offer a > span {
display: block;
padding-top: 18px;
text-align: center;
text-transform: uppercase;
}
#site-footer #ask-offer a > span:before {
content:"• ";
display: inline-block;
margin-right: 10px;
font-size: 15px;
color: #d3d3d3;
}
#site-footer #ask-offer a > span:after {
content:" •";
display: inline-block;
margin-left: 10px;
font-size: 15px;
color: #d3d3d3;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="wrapper">
<footer id="site-footer">
<div class="wrapper">
<div id="shadow"></div>
<div id="ask-offer">
<a href="javascript:;" title='Demander une offre'><span>Ask an offer</span></a>
</div>
</div>
</footer>
</div>
你有什么想法吗?
谢谢!
最佳答案
只需将 .css("overflow", "visible"); 添加到您的 jquery 中:
$('#site-footer').animate({ height: footerHeight }, 500).css("overflow", "visible");
和
$('#site-footer').animate({ height: 150 }, 500).css("overflow", "visible");
关于jQuery 动画 div : button disapears (z-index bug? ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37840341/
我有一个包含导航元素的页面,我想将其隐藏在页面的左侧/右侧,并在我将鼠标悬停在图标上时显示。我在要隐藏的元素上使用 :after 伪元素创建了图标。该解决方案在经过测试的桌面浏览器上运行良好,但在 c
我正在处理这个导航栏。每当我单击选项卡时,我都会将导航栏更改为不同的颜色,但这导致了一个问题:当我单击一个图标时,导航栏会更改颜色但选项卡的 Logo 会消失。它仅在我单击另一个选项卡时才会重新出现,
我有允许用户提交评论的文本区域,我想按时获取评论提交的日期,并与添加的评论一起保存到 json。 不幸的是,当我提交评论时,评论和日期按预期显示,但当我刷新页面时,日期不见了。 注意我正在使用 jso
我对 p:message 标签有一个奇怪的问题。在页面 a 上有一个数据表,其中包含我可以在 p:dialog 中编辑的数据库中的数据。一旦所有验证都成功并且数据库中的更新完成,我就会刷新数据表并添加
我有一些具有子组件的 Skinnable 容器,例如图像组件或按钮栏等。似乎当我添加皮肤时,Skinnable 容器看起来很棒,但该容器的所有子组件似乎消失。 Example:
我使用带有(提示:文本)的 EditText View 我想重现已弃用的(单行:true)EditText 的属性。 所以我使用这些属性和值: (行数:1) (最多行数:1) (水平滚动:真) 而且效
我不明白为什么这段代码不起作用。用户可以单击一个按钮来展开粘性页脚。我使用 jQuery 为页脚设置动画(通过增加 #site-footer 的高度)。单击按钮后出现问题:#ask-offer div
当我使用 on_resize() 事件时,我的文本没有显示。更具体地说,问题来自“return pyglet.event.EVENT_HANDLED”语句。 这是一个简短的例子: import pyg
我正在为 Liferay 6.1 EE GA3 开发应用程序。 在控制面板下,我们有私有(private)插件安装程序部分,我们可以在其中安装/部署新的 portlet。我正在使用面板并且该部分工作正
我正在使用 bootstrap 创建网站。我正在尝试创建一个有序列表,其中包含每个元素的媒体对象。当我这样做时,在平板电脑上查看时数字会消失。但是,当您从桌面浏览器查看列表并将窗口调整为平板电脑分辨率
所以我有这行代码 SharedPreferences sharedPref = getApplicationContext().getSharedPreferences(PREFS_NAME, 0);
我是一名优秀的程序员,十分优秀!