توضیحات

در این جلسه به توضیح افزودن فایل های js (جاوااسکریپت) قالب به پروژه فروشگاه اینترنتی با لاراول می پردازیم.


طراحی وب طراحی سایت پی اچ پی php شی گرایی php oop php mvc mvc پایگاه داده laravel لاراول فروشگاه_اینترنتی

مدرس دوره علی شیخ
مدت دوره 42:39:50
تعداد ویدیو 212

وضعیت دوره : کامل شده
قیمت دوره : 699,000 629,000 تومان

نظرات ارزشمند شما:

برای ارسال نظر ابتدا باید وارد سایت شوید

  • برای دوستان که از لاراول 11 و vith میخوان استفاده کنند میتونند از این استفاده کنند
    که کار کنه اینو برای admin.js بزارید

    import $ from "jquery";
    
    window.$ = $;

    import bundle from "bootstrap/dist/js/bootstrap.bundle";

    import easing from "jquery.easing";

    import chartjs from "chart.js"



    (function($) {
    "use strict"; // Start of use strict

    // Toggle the side navigation
    $("#sidebarToggle, #sidebarToggleTop").on("click", function(e) {
    $("body").toggleClass("sidebar-toggled");
    $(".sidebar").toggleClass("toggled");
    if ($(".sidebar").hasClass("toggled")) {
    $(".sidebar .collapse").collapse("hide");
    }
    });

    // Close any open menu accordions when window is resized below 768px
    $(window).resize(function() {
    if ($(window).width() < 768) {
    $(".sidebar .collapse").collapse("hide");
    }

    // Toggle the side navigation when window is resized below 480px
    if ($(window).width() < 480 && !$(".sidebar").hasClass("toggled")) {
    $("body").addClass("sidebar-toggled");
    $(".sidebar").addClass("toggled");
    $(".sidebar .collapse").collapse("hide");
    }
    });

    // Prevent the content wrapper from scrolling when the fixed side navigation hovered over
    $("body.fixed-nav .sidebar").on("mousewheel DOMMouseScroll wheel", function(
    e
    ) {
    if ($(window).width() > 768) {
    var e0 = e.originalEvent,
    delta = e0.wheelDelta || -e0.detail;
    this.scrollTop += (delta < 0 ? 1 : -1) * 30;
    e.preventDefault();
    }
    });

    // Scroll to top button appear
    $(document).on("scroll", function() {
    var scrollDistance = $(this).scrollTop();
    if (scrollDistance > 100) {
    $(".scroll-to-top").fadeIn();
    } else {
    $(".scroll-to-top").fadeOut();
    }
    });

    // Smooth scrolling using jQuery easing
    $(document).on("click", "a.scroll-to-top", function(e) {
    var $anchor = $(this);
    $("html, body")
    .stop()
    .animate(
    {
    scrollTop: $($anchor.attr("href")).offset().top
    },
    1000,
    "easeInOutExpo"
    );
    e.preventDefault();
    });
    })($); // End of use strict

    • سلام وقت بخیر.
      ممنون از ارسال پیشنهادتون، دوستان میتونند تست کنند

  • با سلام
    استاد ییخشید یه سوال داشتم
    زمانی که دستور npm i chart.js@2.9.3
    رو میزنم در اخر این ایرور رو بهم میده
    found 1 high severity vulnerability
    run `npm audit fix` to fix them, or `npm audit` for details
    چرکار باید کنم

    • سلام وقت بخیر.
      چک کنید اگه کتابخانه اضافه شده و داره کار میکنه، مشکلی نیست