我的应用程序使用jQuery的slideDown和slideUp表现不佳。我希望在支持它的浏览器中使用CSS3等效。
使用CSS3过渡是否可以在向下或向上滑动项目时将元素从display: none;
更改为display: block;
?
答案 0 :(得分:31)
你可以这样做:
#youritem .fade.in {
animation-name: fadeIn;
}
#youritem .fade.out {
animation-name: fadeOut;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(startYposition);
}
100% {
opacity: 1;
transform: translateY(endYposition);
}
}
@keyframes fadeOut {
0% {
opacity: 1;
transform: translateY(startYposition);
}
100% {
opacity: 0;
transform: translateY(endYposition);
}
}
示例 - 幻灯片和淡入淡出:
这会滑动并设置不透明度的动画 - 不是基于容器的高度,而是基于顶部/坐标。 View example
示例 - 自动高度/无Javascript:这是一个实时示例,不需要高度 - 处理自动高度,没有javascript。
View example
答案 1 :(得分:14)
我更改了您的解决方案,因此适用于所有现代浏览器:
css片段:
-webkit-transition: height 1s ease-in-out;
-moz-transition: height 1s ease-in-out;
-ms-transition: height 1s ease-in-out;
-o-transition: height 1s ease-in-out;
transition: height 1s ease-in-out;
js片段:
var clone = $('#this').clone()
.css({'position':'absolute','visibility':'hidden','height':'auto'})
.addClass('slideClone')
.appendTo('body');
var newHeight = $(".slideClone").height();
$(".slideClone").remove();
$('#this').css('height',newHeight + 'px');
答案 2 :(得分:9)
所以我继续前进并回答了我自己的问题:)
@ True的回答是将元素转换为特定高度。这个问题是我不知道元素的高度(它可能会波动)。
我找到了其他使用max-height作为转换的解决方案,但这为我制作了一个非常生涩的动画。
这是(仅适用于WebKit浏览器):http://jsfiddle.net/XUjAH/6/
虽然不是纯粹的CSS,但我的解决方案涉及转换高度,这由一些JS确定。
答案 3 :(得分:8)
为什么不利用现代浏览器css过渡,使用更多的CSS和更少的jquery使事情更简单快捷
Here is the code for sliding up and down
Here is the code for sliding left to right
类似地,我们可以通过改变transform-origin和transform:scaleX(0)或transform:scaleY(0)来适当地改变从上到下或从右到左的滑动。
答案 4 :(得分:5)
我建议使用jQuery Transit Plugin使用CSS3转换属性,该属性在移动设备上运行良好,因为大多数都支持硬件加速以提供原生外观。
<强> HTML:强>
<div class="moveMe">
<button class="moveUp">Move Me Up</button>
<button class="moveDown">Move Me Down</button>
<button class="setUp">Set Me Up</button>
<button class="setDown">Set Me Down</button>
</div>
<强>使用Javascript:强>
$(".moveUp").on("click", function() {
$(".moveMe").transition({ y: '-=5' });
});
$(".moveDown").on("click", function() {
$(".moveMe").transition({ y: '+=5' });
});
$(".setUp").on("click", function() {
$(".moveMe").transition({ y: '0px' });
});
$(".setDown").on("click", function() {
$(".moveMe").transition({ y: '200px' });
});
答案 5 :(得分:4)
让高度转换工作可能有点棘手,主要是因为你必须知道动画的高度。通过在要动画的元素中填充来进一步复杂化。
以下是我提出的建议:
使用这样的风格:
.slideup, .slidedown {
max-height: 0;
overflow-y: hidden;
-webkit-transition: max-height 0.8s ease-in-out;
-moz-transition: max-height 0.8s ease-in-out;
-o-transition: max-height 0.8s ease-in-out;
transition: max-height 0.8s ease-in-out;
}
.slidedown {
max-height: 60px ; // fixed width
}
将您的内容包装到另一个容器中,以便您正在滑动的容器没有填充/边距/边框:
<div id="Slider" class="slideup">
<!-- content has to be wrapped so that the padding and
margins don't effect the transition's height -->
<div id="Actual">
Hello World Text
</div>
</div>
然后使用一些脚本(或绑定框架中的声明性标记)来触发CSS类。
$("#Trigger").click(function () {
$("#Slider").toggleClass("slidedown slideup");
});
此处示例: http://plnkr.co/edit/uhChl94nLhrWCYVhRBUF?p=preview
这适用于固定大小的内容。对于更通用的解决方案,您可以使用代码在激活转换时计算元素的大小。以下是一个jQuery插件,它就是这样做的:
$.fn.slideUpTransition = function() {
return this.each(function() {
var $el = $(this);
$el.css("max-height", "0");
$el.addClass("height-transition-hidden");
});
};
$.fn.slideDownTransition = function() {
return this.each(function() {
var $el = $(this);
$el.removeClass("height-transition-hidden");
// temporarily make visible to get the size
$el.css("max-height", "none");
var height = $el.outerHeight();
// reset to 0 then animate with small delay
$el.css("max-height", "0");
setTimeout(function() {
$el.css({
"max-height": height
});
}, 1);
});
};
可以像这样触发:
$(“#Trigger”)。click(function(){
if ($("#SlideWrapper").hasClass("height-transition-hidden"))
$("#SlideWrapper").slideDownTransition();
else
$("#SlideWrapper").slideUpTransition();
});
反对像这样的标记:
<style>
#Actual {
background: silver;
color: White;
padding: 20px;
}
.height-transition {
-webkit-transition: max-height 0.5s ease-in-out;
-moz-transition: max-height 0.5s ease-in-out;
-o-transition: max-height 0.5s ease-in-out;
transition: max-height 0.5s ease-in-out;
overflow-y: hidden;
}
.height-transition-hidden {
max-height: 0;
}
</style>
<div id="SlideWrapper" class="height-transition height-transition-hidden">
<!-- content has to be wrapped so that the padding and
margins don't effect the transition's height -->
<div id="Actual">
Your actual content to slide down goes here.
</div>
</div>
实施例: http://plnkr.co/edit/Wpcgjs3FS4ryrhQUAOcU?p=preview
如果您对更多细节感兴趣,我最近在博文中写了这篇文章:
http://weblog.west-wind.com/posts/2014/Feb/22/Using-CSS-Transitions-to-SlideUp-and-SlideDown
答案 6 :(得分:2)
Aight fam,经过一些研究和实验,我认为最好的方法是让事物的高度在0px
,并让它过渡到一个确切的高度。使用JavaScript可以获得准确的高度。 JavaScript没有动画制作,它只是改变高度值。检查一下:
function setInfoHeight() {
$(window).on('load resize', function() {
$('.info').each(function () {
var current = $(this);
var closed = $(this).height() == 0;
current.show().height('auto').attr('h', current.height() );
current.height(closed ? '0' : current.height());
});
});
每当页面加载或调整大小时,具有类info
的元素将更新其h
属性。然后,您可以使用按钮触发style="height: __"
,将其设置为之前设置的h
值。
function moreInformation() {
$('.icon-container').click(function() {
var info = $(this).closest('.dish-header').next('.info'); // Just the one info
var icon = $(this).children('.info-btn'); // Select the logo
// Stop any ongoing animation loops. Without this, you could click button 10
// times real fast, and watch an animation of the info showing and closing
// for a few seconds after
icon.stop();
info.stop();
// Flip icon and hide/show info
icon.toggleClass('flip');
// Metnod 1, animation handled by JS
// info.slideToggle('slow');
// Method 2, animation handled by CSS, use with setInfoheight function
info.toggleClass('active').height(icon.is('.flip') ? info.attr('h') : '0');
});
};
这是info
课程的样式。
.info {
display: inline-block;
height: 0px;
line-height: 1.5em;
overflow: hidden;
padding: 0 1em;
transition: height 0.6s, padding 0.6s;
&.active {
border-bottom: $thin-line;
padding: 1em;
}
}
我在我的一个项目中使用了这个,所以类名是特定的。您可以随意更改它们。
跨浏览器可能不支持样式。在镀铬工作正常。
以下是此代码的实际示例。只需点击?
图标即可开始动画
答案 7 :(得分:1)
没有JavaScript的变体。仅CSS。
CSS:
.toggle_block {
border: 1px solid #ccc;
text-align: left;
background: #fff;
overflow: hidden;
}
.toggle_block .toggle_flag {
display: block;
width: 1px;
height: 1px;
position: absolute;
z-index: 0;
left: -1000px;
}
.toggle_block .toggle_key {
font-size: 16px;
padding: 10px;
cursor: pointer;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.toggle_block .content {
padding: 0 10px;
overflow: hidden;
max-height: 0;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.toggle_block .content .toggle_close {
cursor: pointer;
font-size: 12px;
}
.toggle_block .toggle_flag:checked ~ .toggle_key {
background: #dfd;
}
.toggle_block .toggle_flag:checked ~ .content {
max-height: 1000px;
padding: 10px 10px;
}
HTML:
<div class="toggle_block">
<input type="checkbox" id="toggle_1" class="toggle_flag">
<label for="toggle_1" class="toggle_key">clicker</label>
<div class="content">
Text 1<br>
Text 2<br>
<label for="toggle_1" class="toggle_close">close</label>
</div>
</div>
对于下一个块,仅更改html中的ID和FOR属性。
答案 8 :(得分:0)
你不能简单地使用css3轻松实现滑动,这就是为什么我将JensT脚本转换为带有javascript后备和回调的插件。
这样,如果你有一个现代的brwowser,你可以使用css3 csstransition。如果您的浏览器不支持它,请使用旧式的slideUp slideDown。
/* css */
.csstransitions .mosneslide {
-webkit-transition: height .4s ease-in-out;
-moz-transition: height .4s ease-in-out;
-ms-transition: height .4s ease-in-out;
-o-transition: height .4s ease-in-out;
transition: height .4s ease-in-out;
max-height: 9999px;
overflow: hidden;
height: 0;
}
插件
(function ($) {
$.fn.mosne_slide = function (
options) {
// set default option values
defaults = {
delay: 750,
before: function () {}, // before callback
after: function () {} // after callback;
}
// Extend default settings
var settings = $.extend({},
defaults, options);
return this.each(function () {
var $this = $(this);
//on after
settings.before.apply(
$this);
var height = $this.height();
var width = $this.width();
if (Modernizr.csstransitions) {
// modern browsers
if (height > 0) {
$this.css(
'height',
'0')
.addClass(
"mosne_hidden"
);
} else {
var clone =
$this.clone()
.css({
'position': 'absolute',
'visibility': 'hidden',
'height': 'auto',
'width': width
})
.addClass(
'mosne_slideClone'
)
.appendTo(
'body'
);
var newHeight =
$(
".mosne_slideClone"
)
.height();
$(
".mosne_slideClone"
)
.remove();
$this.css(
'height',
newHeight +
'px')
.removeClass(
"mosne_hidden"
);
}
} else {
//fallback
if ($this.is(
":visible"
)) {
$this.slideUp()
.addClass(
"mosne_hidden"
);
} else {
$this.hide()
.slideDown()
.removeClass(
"mosne_hidden"
);
}
}
//on after
setTimeout(function () {
settings.after
.apply(
$this
);
}, settings.delay);
});
}
})(jQuery);;
如何使用
/* jQuery */
$(".mosneslide").mosne_slide({
delay:400,
before:function(){console.log("start");},
after:function(){console.log("done");}
});
您可以在此处找到演示页面 http://www.mosne.it/playground/mosne_slide_up_down/
答案 9 :(得分:0)
try this for slide up slide down with animation
give your **height
@keyframes slide_up{
from{
min-height: 0;
height: 0px;
opacity: 0;
}
to{
height: 560px;
opacity: 1;
}
}
@keyframes slide_down{
from{
height: 560px;
opacity: 1;
}
to{
min-height: 0;
height: 0px;
opacity: 0;
}
}