gpt4 book ai didi

jquery - 在 BlackNegative 上看到的效果

转载 作者:行者123 更新时间:2023-11-28 13:21:14 25 4
gpt4 key购买 nike

我想知道如何实现在 Black Negative 上看到的效果- 我在谈论文本“讲述,迷人,故事”中的悬停效果......你能只用 css3 或 jQuery 来做吗?如果可以,怎么做?

最佳答案

您可以使用 jQuery 实现基本功能(绝对不完美,但您可以通过一些调整使其工作):

/* Expand on mouseover */
$(".whoweare-title").hover(function(){
$(this).stop(true, false).animate({
height: '87px',
marginTop: '27px',
marginBottom: '27px'
});
$(".whoweare-section-container").stop(true, false).animate({
marginTop: '-126px',
});
}, function() {
$(this).stop(true, false).animate({
height: '24px',
marginTop: '0px',
marginBottom: '0px'
});
$(".whoweare-section-container").stop(true, false).animate({
marginTop: '-67px',
});
});

另见 this fiddle .

关于jquery - 在 BlackNegative 上看到的效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14610594/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com