使用CSS3过渡来对jQueryui进行动画排序



我如何使用css3跃迁(或任何其他方式)使jQuery排序行为更像iOS中的列表,在iOS中重新订购列表,其中列表项目在拖动时会顺利进行动画,因此项目scurry scurry scurry scurry scurry当您拖动时挡住?

[编辑将其转变为常见问题解答,并为任何想弄清楚这一点的人节省时间]

https://gist.github.com/801570显示了如何使用jQuery排序平稳地拖动动画。当您拖动时,物品会匆匆忙忙。它使用CSS3过渡,效果正是我想要的。很酷。

这是代码:

JSFIDDLE:

http://jsfiddle.net/ltwmp/

html:

<style name="impostor_size">
    .marker + li { border-top-width:0px; }
</style>
<ul>
    <li>1</li>
    <li>2</li>
    <li>3</li>
    <li>4</li>
    <li>5</li>
    <li>6</li>
</ul>

CSS:

body { color:white; font-family:Helvetica, sans-serif;  padding: 10px}
ul { float:left; width:300px; overflow:hidden; border-radius:6px; }
li { display:block; position:relative; padding:12px 6px; z-index:1; margin:5px 20px; }
li:after { background:#18629D; display:block; position:absolute; height:100%; width:100%; top:0px; left:0px; content:' '; border-radius:6px; z-index:-1; }
li { -moz-transition:border-top-width 0.1s ease-in; -webkit-transition:border-top-width 0.1s ease-in; border-top:0px solid rgba(0,0,0,0); }
.marker { opacity:0.0; }

脚本:

var stylesheet = $('style[name=impostor_size]')[0].sheet;
var rule = stylesheet.rules ? stylesheet.rules[0].style : stylesheet.cssRules[0].style;
var setPadding = function(atHeight) {
    rule.cssText = 'border-top-width: '+atHeight+'px'; 
};
$('ul').sortable({
    'placeholder':'marker',
    'start':function(ev, ui) {
        setPadding(ui.item.height());
    },
    'stop':function(ev, ui) {
        var next = ui.item.next();
        next.css({'-moz-transition':'none', '-webkit-transition':'none', 'transition':'none'});
        setTimeout(next.css.bind(next, {'-moz-transition':'border-top-width 0.1s ease-in', '-webkit-transition':'border-top-width 0.1s ease-in', 'transition':'border-top-width 0.1s ease-in'}));
    }
});

我通过利用可排序API中的'更改'函数来改进上述所有内容。这是代码。查看下面的小提琴以查看所需的CSS。

$('ul').sortable({
placeholder:'marker',
distance: 15,
cursor: 'move',
revert: 200,
start:function(ev, ui) {
   $(".marker").css({"height": "0px"});
    console.log("start");
},
change:function(ev, ui) {
    $(".marker").css({"height": "0px"});
    setTimeout(function(){
        $(".marker").css({"height": "40px"});
    },10);
} });

您可以在此处查看完整的代码示例

http://jsfiddle.net/ltwmp/284/

相关内容

  • 没有找到相关文章

最新更新