goto.js 715 B

123456789101112131415161718192021222324252627282930313233343536
  1. // axios
  2. // axios.get('http://172.105.205.52:8000/courses?tag_string=(2)')
  3. // .then(function (response) {
  4. // console.log(response);
  5. // });
  6. // axios.post('/user', {
  7. // firstName: 'Fred',
  8. // lastName: 'Flintstone'
  9. // }).then(function (response) {
  10. // console.log(response);
  11. // })
  12. // jquery
  13. // $.ajax('http://172.105.205.52:8000/tags', {
  14. // type: 'GET', // http method
  15. // success: function (res) {
  16. // console.log(res);
  17. // },
  18. // error: function (err) {
  19. // console.log(err);
  20. // }
  21. // });
  22. // $.get("date-time.php", function(data){
  23. // console.log(res);
  24. // });
  25. $(".slider1").slick({
  26. dots:true,
  27. dotsClass:'slick-dots',
  28. speed:1000,
  29. });