用jQuery实现 鼠标拖拽div滑块 选项卡 居中弹窗

鼠标拖拽div滑块


<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Documenttitle>
        <style>
            div{width: 100px;height: 100px;background-color: red;position: absolute;}
        style>
        <script src="../jquery-1.10.1.min.js">script>
        <script>
            $(function(){
                //当鼠标按下div的时候执行函数
                $("div").mousedown(function(ev){
                    //找到鼠标距离div左边的距离
                    var offsetX = ev.pageX - $(this).offset().left;
                    //找到鼠标距离div上边的距离
                    var offsetY = ev.pageY - $(this).offset().top;
                    //用_this记录下来鼠标按下的 "这个" div
                    var _this = this;
                    //当鼠标移动的时候执行函数
                    $(document).mousemove(function(ev){
                        //让记录下的 "这个" div的CSS样式改变  
                        $(_this).css({
                            left: ev.clientX - offsetX + "px",
                            top: ev.clientY - offsetY + "px"
                        });
                    })
                })

                当鼠标抬起的时候执行函数 把鼠标移动的函数取消掉
                $("div").mouseup(function(){
                    $(document).off("mousemove");
                })
            })
        script>
    head>
    <body>
        <div>div>
        <div>div>
        <div>div>
        <div>div>
        <div>div>
    body>
html>

用jQuery实现 鼠标拖拽div滑块 选项卡 居中弹窗_第1张图片

选项卡


<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Documenttitle>
        <style>
            .div1{width:270px;display: flex;flex-wrap:wrap;}
            .div1 div{width:300px;height: 150px; border: 1px black solid;display: none;}
            .div1 button{width:90px;height: 30px;}
            .active{background-color: orange;color: blue;}
        style>
        
                    
                    

你可能感兴趣的:(学习,jquery,html,js)