zoukankan      html  css  js  c++  java
  • [RxJS] Drag and Drop example

    Improving our mouse drag event

    Our mouse drag event is a little too simple. Notice that when we drag around the sprite, it always positions itself at the top-left corner of the mouse. Ideally we'd like our drag event to offset its coordinates, based on where the mouse was when the mouse down event occurred. This will make our mouse drag more closely resemble moving a real object with our finger.

    Let's see if you can adjust the coordinates in the mouse drag event, based on the mousedown location on the sprite. The mouse events are sequences, and they look something like this:

    spriteContainerMouseMoves =
        seq([ {x: 200, y: 400, offsetX: 10, offsetY: 15},,,{x: 210, y: 410, offsetX: 20, offsetY: 26},,, ])

    Each item in the mouse event sequences contains an x, y value that represents that absolute location of the mouse event on the page. The moveSprite() function uses these coordinates to position the sprite. Each item in the sequence also contains a pair of offsetX and offsetY properties that indicate the position of the mouse event relative to the event target.

    function(sprite, spriteContainer) {
        // All of the mouse event sequences look like this:
        // seq([ {pageX: 22, pageY: 3423, offsetX: 14, offsetY: 22} ,,, ])
        var spriteMouseDowns = Observable.fromEvent(sprite, "mousedown"),
            spriteContainerMouseMoves = Observable.fromEvent(spriteContainer, "mousemove"),
            spriteContainerMouseUps = Observable.fromEvent(spriteContainer, "mouseup"),
            // Create a sequence that looks like this:
            // seq([ {pageX: 22, pageY:4080 },,,{pageX: 24, pageY: 4082},,, ])
            spriteMouseDrags =
                // For every mouse down event on the sprite...
                spriteMouseDowns.
                    concatMap(function(contactPoint) {
                        // ...retrieve all the mouse move events on the sprite container...
                        return spriteContainerMouseMoves.
                            // ...until a mouse up event occurs.
                            takeUntil(spriteContainerMouseUps).
                            map(function(movePoint) {
                                return {
                                    pageX: movePoint.pageX - contactPoint.offsetX,
                                    pageY: movePoint.pageY - contactPoint.offsetY
                                };
                            });
                    });
    
        // For each mouse drag event, move the sprite to the absolute page position.
        spriteMouseDrags.forEach(function(dragPoint) {
            sprite.style.left = dragPoint.pageX + "px";
            sprite.style.top = dragPoint.pageY + "px";
        });
    }
  • 相关阅读:
    69.广搜练习:  最少转弯问题(TURN)
    51..分治算法练习:  4378 【Laoguo】循环比赛
    50.分治算法练习:  二分算法:  2703 奶牛代理商 XII
    [转载]双向广搜
    49.分治算法练习:  1497 取余运算
    48.贪心练习:  1621 混合牛奶
    47..贪心  失恋28天-追女孩篇
    46.贪心算法练习:  区间合并
    45.分支算法练习:  7622:求排列的逆序数
    44.分治算法练习:  一元三次方程求解
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5631724.html
Copyright © 2011-2022 走看看