Processing math: 100%

Saturday, September 21, 2019

Javascript Library that Swap <div> Elements

I am responsible for creating a simple game that involve an interchange of div objects. I record an approach modified from a source code from the net:

In the function defined in property onDragEnd the saveSortOrder is created such that upon each drag event, an array is created to store the current position of each div element, for example, [1, 0, 3 , 2, 4] means div of id 1, 0, 3, 2, 4 are at position 0, 1, 2, 3, 4 respectively.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<html>
    <head>
 
        <style>
            body {
                background-color: #333;
                font-family: Monospace;
                color: silver;n
            }
            .sort {
                display: inline-block;
                width: 18%;
                height: 20%;
                font-size: 20px;
                border-radius: 5px;
                background-color: #7cfc00;
                color: black;
                position: absolute;
                border: 1px solid black;
                box-sizing: border-box;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                padding: 8px;
            }
            .sort:active {
                background-color: #008445;
                color: white;
            }
            .gsap {
                color: #7cfc00;
            }
            h4 {
                color: gray;
            }
        </style>
    </head>
    <body>
        <div id="divcont">
            <div class="sort" id="0"> 0</div>
            <div class="sort" id="1"> 1</div>
            <div class="sort" id="2"> 2</div>
            <div class="sort" id="3"> 3</div>
            <div class="sort" id="4"> 4</div>
        </div>
 
        <script>
            $(document).ready(function() {
                let windowsize = $(window).width();
                draggableScript();
                $(window).resize(function() {
                    draggableScript();
                });
            });
 
            function draggableScript() {
                let windowsize = $(window).width();
                createSortable("divcont");
                function createSortable(selector) {
                    var newX,
                        sortable = document.getElementById(selector);
                    Draggable.create(sortable.children, {
                        type: "x",
                        bounds: "#divcont",
                        onPress: function() {
                            newX = this.x;
                        },
 
                        onDragEnd: function() {
                            var i = sortable.children.length,
                                dragIndex,
                                targetIndex = $.inArray(
                                    this.target,
                                    sortable.children
                                );
                            while (--i > -1) {
                                if (this.hitTest(sortable.children[i], "10%")) {
                                    TweenLite.to(sortable.children[i], 0.2, {
                                        x: newX
                                    });
                                    dropIndex = i;
                                }
                            }
                            if (typeof dropIndex !== "undefined") {
                                dragIndex =
                                    targetIndex < dropIndex
                                        ? dropIndex + 1
                                        : dropIndex;
                                sortable.insertBefore(
                                    sortable.children[dropIndex],
                                    sortable.children[targetIndex]
                                );
                                sortable.insertBefore(
                                    this.target,
                                    sortable.children[dragIndex]
                                );
                            }
 
                            let saveSortOrder = [];
                            for (i = 0; i < 5; i++) {
                                saveSortOrder.push(
                                    document
                                        .getElementById("divcont")
                                        .getElementsByTagName("div")
                                        [i].getAttribute("id")
                                );
                            }
                            console.log(saveSortOrder);
                        },
                        liveSnap: true,
                        snap: function(endValue) {
                            return (
                                Math.round(endValue / (0.2 * windowsize)) *
                                0.2 *
                                windowsize
                            );
                        }
                    });
                    TweenLite.set(sortable, {
                        height: 0.085 * windowsize * sortable.children.length
                    });
                    for (var i = 0; i < sortable.children.length; i++) {
                        TweenLite.set(sortable.children[i], {
                            x: 0.2 * windowsize * i
                        });
                    }
                }
            }
            // We get id array by:
        </script>
    </body>
</html>

No comments:

Post a Comment