Wie füge ich jQuery-Code zur HTML-Seite hinzu?

$(".icon-bg").click(function () {
    $(".btn").toggleClass("active");
    $(".icon-bg").toggleClass("active");
    $(".container").toggleClass("active");
    $(".box-upload").toggleClass("active");
    $(".box-caption").toggleClass("active");
    $(".box-tags").toggleClass("active");
    $(".private").toggleClass("active");
    $(".set-time-limit").toggleClass("active");
    $(".button").toggleClass("active");
});

$(".button").click(function () {
    $(".button-overlay").toggleClass("active");
});

$(".iconmelon").click(function () {
    $(".box-upload-ing").toggleClass("active");
    $(".iconmelon-loaded").toggleClass("active");
});

$(".private").click(function () {
    $(".private-overlay").addClass("active");
    $(".private-overlay-wave").addClass("active");
});

Kann jemand helfen? Es ist für eine Upload-Funktion, die ich bei @ gefunden hahttp: //codepen.io/iremlopsum/pen/YPWPa. Ich versuche es auf meine Website zu bekommen

Antworten auf die Frage(8)

Ihre Antwort auf die Frage