Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632868 Views

Latest files of /cody/atherosai/ui/drag-and-drop-01

assets/ cody/atherosai/ui/drag-and-drop-01/assets/
9 Items
  • alex.jpg
  • instagram.svg
  • linkedin.svg
  • profile.jpg
  • james.jpg
  • x.svg
  • liliya.jpg
  • melissa.jpg
  • style.css cody/atherosai/ui/drag-and-drop-01/style.css
    87 Views
    0 Comments


    :root {
    --primary: #0969DA;
    --background: #EDEEF7;
    --gray: #EDEEF7;
    --white: #FCFCFC;
    --navbar-height: 60px;
    index.html cody/atherosai/ui/drag-and-drop-01/index.html
    349 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Drag & drop</title>
    <link rel="stylesheet" href="style.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    script.js cody/atherosai/ui/drag-and-drop-01/script.js
    150 Views
    0 Comments
    const dragAndDropItems = document.getElementById(
    'team-members'
    );

    new Sortable(dragAndDropItems, {
    animation: 350,
    chosenClass: "team-member-chosen",
    dragClass: "team-member-drag",