作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
当我加载这个动画时,文本从 HTML 页面的左侧开始。
但我需要像下面这样
- "Hello" Should start from little outside of Left Top corner side of the html page
- "Your" should start from little outside Middle Top (center top) of the page
- "World" should start from little outside Right Top Corner of the page
(为了更清楚和理解,我已经编辑了上面的内容)
所有一起,应该来到中心放大。他们都必须返回缩小到页面的左侧。
$('#hello').animate({
zoom: '150%',
left: window.innerWidth / 1
}, 3000, function() {
// 4. Pause for 3 seconds
$(this).delay(3000)
// 6. zooms out to 200% heading towards left top corner,
// (logo position)
// 7. Fades out when reaching the logo 8. Logo appears
.animate({
zoom: '40%',
left:0
}, 3000, function() {
$(this).find('span').fadeOut()
})
});
h1 {
font-size: 1em;
zoom: 200%;
transition: zoom 1s ease-in-out;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<div id="hello">
<h1> H<span>ello</span> Y<span>our</span> W<span>orld</span></h1>
最佳答案
由于您需要的动画非常复杂(从不同侧面滑入和缩放),也许创建一个自定义动画?
在下面的示例中,我使用了 2D 变换和动画的 step
属性。我放了 2 长 <span>
在单词之间将它们推到两边。
点击红框开始动画。如果您有任何问题,请随时提出。
ps:我在元素上留下了边框,这样你就可以看到它们是如何移动的
$(function() {
FixMargins();
$(".container").click(function() {
var phWidth = $(".placeholder").width();
var height = $(".container").height();
containerHeight = $(".theText").height();
var newTopMargin = (height - containerHeight) / 2;
$(".theText").animate({
transform: 2
}, {
step: function(now, fx) {
var newscale = 1 + +now;
$(this).css({
'transform': "scale(" + newscale + "," + newscale + ")",
"opacity":-1 + now
});
$(this).css("margin-top",-150 + (newTopMargin+150) / 2 * now);
$(".placeholder").css({
"width": phWidth - phWidth * now/2
});
FixMargins();
},
duration: 700
}).promise().done(function() {
$(this).delay(500);
var textTop = $(".theText").css("margin-top").split('p')[0];
var textLeft = $(".theText").css("margin-left").split('p')[0];
$(this).animate({
transform: 2
}, {
step: function(now, fx) {
console.log(textLeft - textLeft * now);
var newscale = 3 - +now;
$(this).css('transform', "scale(" + newscale + "," + newscale + ")");
$(".theText").css("marginLeft", textLeft - textLeft / 2 * now);
$(".theText").css("marginTop", textTop - textTop / 2 * now);
},
duration: 500
}).promise().done(function() {
$(this).find('span').css({
"position":"absolute"
}).animate({
"width":0,
"opacity":0
});
});
});
});
});
function FixMargins() {
width = $(".container").width();
containerWidth = $(".theText").width();
leftMargin = (width - containerWidth) / 2;
$(".theText").css("marginLeft", leftMargin);
}
.container {
width: 500px;
height: 300px;
position: relative;
overflow: hidden;
white-space: nowrap;
border:1px solid red;
}
.theText {
position: absolute;
margin-top:-150px;
opacity:0;
}
.placeholder {
width: 200px;
display: inline-block;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container"> <span class="theText">
H<span>ello</span>
<span class="placeholder"></span>
Y<span>our</span>
<span class="placeholder"></span>
W<span>orld</span>
</span>
</div>
关于javascript - 文本起始位置左、中和右,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31099662/
在这段代码中,我想知道在 else block 中执行的代码和在 if block 之后执行的代码有什么区别? #include using namespace std; int digits(in
我有这样的场景,比如我需要运行一个位于 12.34.567 的 API curl 请求,登录后我必须再登录一台主机 98.76.543。 登录到第二个主机后,我必须运行curl -XPOST -H"C
我是一名优秀的程序员,十分优秀!