- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试创建一个网络作品集,我希望当按下其中一个按钮为文本腾出空间时,着陆页上的两个按钮会向上移动。出于某种原因,按钮不会随着我当前的设置而移动。有任何想法吗?这是我的相关代码:
JavaScript
$(document).ready(function(){
$('button').click(function(){
$('#Name').addClass("animated fadeOutUp")
$('#options').addClass("slideUp")})})
html
<div class = "content animated fadeInUp">
<h1 id="Name">TOM KAIZER</h1>
<p></p>
<span id = "options">
<button type = "button" class = "button grow"class = 'resume' style = "text-decoration: none; color: black;">Resume</button>
<button type = "button" class = "button grow contact" style = "text-decoration: none; color: black;">Contact Me</button>
</span>
</div>
CSS
@keyframes slideUp{
from{
opacity: 0;
}
to{
opacity:1;
transform: translateY(-20px);
}
};
@-webkit-keyframes slideUp{
from { top: 0; left: 0; }
to { top: 100px; left: 100px; }
};
.slideUp{
animation-name:slideUp;
-webkit-animation-name:slideUp;
animation-duration: 3s;
-webkit-animation-duration: 3s;
animation-fill-mode: forwards
}
最佳答案
这是一个放置问题。只需将 @keyframes 放在 .slideUp 之后即可。要使按钮实际移动,您需要设置 CSS 显示属性。
.slideUp{
position: absolute;
animation-name:slideUp;
-webkit-animation-name:slideUp;
animation-duration: 3s;
-webkit-animation-duration: 3s;
animation-fill-mode: forwards;
}
@keyframes slideUp{
from{
opacity: 0;
}
to{
opacity:1;
transform: translateY(-20px);
}
};
@-webkit-keyframes slideUp{
from { top: 0; left: 0; }
to { top: 100px; left: 100px; }
};
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class = "content animated fadeInUp">
<h1 id="Name">TOM KAIZER</h1>
<p></p>
<span id = "options">
<button type = "button" class = "button grow"class = 'resume' style = "text-decoration: none; color: black;">Resume</button>
<button type = "button" class = "button grow contact" style = "text-decoration: none; color: black;">Contact Me</button>
</span>
</div>
<script>
$(document).ready(function(){
$('button').click(function(e){
$('#Name').addClass("animated fadeOutUp");
$('#options').addClass("slideUp");
});
});
</script>
关于jquery - 按下按钮时动画跨度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51452297/
这就是我现在正在做的事情。我在设计中使用 LESS CSS。我需要在指定输入之间放置 2 个跨度。所有元素的宽度都应为 100%。跨度应始终为 20px 宽度输入宽度可以根据屏幕宽度进行更改。谁能帮帮
我有一个包含文本和输入字段的跨度。我想知道是否可以让文本左对齐,输入字段右对齐。 NAME: .textBox{ display:inline-block; width:450px
我有这个按钮,我想让它在我点击“选择”时调用方法,在我点击“更改”时调用另一个方法: Select Change 我尝试输入 (click)="method()",但没有成功。我很
我正在开发聊天应用程序 (cordova),当我要在无法输入的表情符号后输入文本时,我在这段代码中遇到了问题 https://output.jsbin.com/radaref This i
很抱歉,如果这是一个非常愚蠢的问题,但我是一名开发人员,目前我的设计技能很少,我在个人网站上工作并且遇到了一个小问题。 我有一个带 ul 的顶部导航和 li元素。这些元素包含链接 . 跨度仅在链接悬
fiddle :https://jsfiddle.net/burz4g8s/4/ 我的 HTML 包含多行双按钮对。服务器端应用程序在 JSP 循环中输出按钮,所以我无法控制各个按钮——我不能使用 d
TextView.setLetterSpacing允许设置字母间距/字符间距。 有没有对应的CharacterStyle / span class允许在 TextView? 中的文本子集上设置字母间距
如何使洋红色矩形比红色矩形短 6 倍? GridLayout { id: gridLayout anchors.fill: parent flo
我最近开始使用 Twitter Bootstrap,但我似乎无法理解 span 的作用以及为什么会有不同的编号 span,例如 span4、span12?什么是偏移量以及它们何时使用? (有时与跨度一
我正在尝试构建一个 jQuery 函数来计算跨度中的总数 var sumnormaltotal = 0; $('span[id^="normaloffertotalspan"]').each(func
我想知道haskell如何评估以下表达式。 span (`elem` ['A'..'Z']) "BOBsidneyMORGANeddy" 结果是 ("BOB","sidneyMORGANeddy")
我有三个词,我想在第一个空格之后的内容周围添加一个跨度,所以 hello world 变成: hello world 和: hello world again 变成: hello world agai
我正在寻找纯 CSS 解决以下问题的方法。 考虑以下 HTML: Some text Some text 两者都是 正在显示元素 inline-block .如何在第二个 的左侧
如何将 Span 放置在其容器的底部? 我目前拥有的:http://jsfiddle.net/wRbax/2/ 我希望 .box 始终位于 .td 的底部 CSS .td { vertical
我试图在 li 中 float 两个 span。左跨度将有我的标签,在右跨度内我将构建一个具有嵌套跨度的图形。我有基本结构,但 chrome 将数字放在左侧跨度的末尾。我该如何解决这个问题? HTML
我有一个像这样的 JavaScript 变量: var text = "A businessman should be able to manage his business matters"; 我想
一些内容可编辑的框与其他框重叠,因此并非所有框都是可编辑的。我想保留与跨度位置中心对齐的文本,如下所示。我如何实现这一点? span { margin: auto; text-alig
我正在使用 WYSIWYG (InnovaEditor) 来编辑我网站上的内容,它适用于 Chrome、IE,主要适用于 Firefox,但 FF 有一个稍微令人讨厌的问题。我将 span 标签插入到
这是我的 html: Settings Export Import 和CSS: span.button { float:right; margin-righ
这里是问题所在:http://jsfiddle.net/STG22/3/ 我希望 span 不会分成两个不同的行(就像上面示例中的第三行一样)。我该怎么做? CSS: span { backg
我是一名优秀的程序员,十分优秀!