开发者

How to horizontally sort divs using Sortable in JQuery

开发者 https://www.devze.com 2022-12-25 15:59 出处:网络
I am looking to sort my divs horizontally in a container div. I found an example on JQuery website but that is vertical sorting. I want it horizontal.

I am looking to sort my divs horizontally in a container div.

I found an example on JQuery website but that is vertical sorting. I want it horizontal.

I want to do it sorting in #sortable <div>.

Will you please guide me开发者_如何学编程 how can I convert this vertical sorting in horizontal manner.

CSS

<style type="text/css">
    #draggable1 { width: 150px; height: 35px; padding: 0.5em; }
    #draggable2 { width: 150px; height: 35px; padding: 0.5em; }
    #draggable3 { width: 150px; height: 35px; padding: 0.5em; }

    #sortable { width: 700px; height: 35px; padding: 0.5em; }
</style>

JavaScript

<script type="text/javascript">
    $(function() {  
        $("#sortable").sortable({
            revert: true
        }); 
    });
</script>

HTML

<div class="demo">
    <div id="sortable" class="ui-state-default">
        <div id = "draggable1" class="ui-state-default">Home</div>
        <div id = "draggable2" class="ui-state-default">Contact Us</div>
        <div id = "draggable3" class="ui-state-default">FAQs</div>
    </div>
</div>


You can just add this CSS style:

#sortable>div { float: left; }

And they'll be horizontal and still sortable. You can see a demo of it in action here.


Although float:left works, here I would rather use display:inline-table for the divs, so that you don't lose the volume of your divs...


just add to your CSS : display: inline-block;

0

精彩评论

暂无评论...
验证码 换一张
取 消