landingpage.js 710 B

12345678910111213141516171819202122232425262728293031323334
  1. $(function(){
  2. $('.selectpicker').selectpicker({
  3. template:{
  4. caret:'<span class="sel-icon glyphicon glyphicon-menu-down"></span>'
  5. }
  6. });
  7. $.getJSON("../../assets/js/landingpage_photos.json", function (data) {
  8. const tmphtml=template("flow-photos",{photos:data});
  9. $("#project-photo-row").append(tmphtml);
  10. });
  11. $("#project-photo-row").on("click",".thumbnail img",function(){
  12. let imgname=$(this).data('imgname');
  13. zeroModal.show({
  14. url:'landingpage_details.html?img='+imgname,
  15. iframe:true,
  16. width:'95%',
  17. height:'95%',
  18. onClosed:function(){
  19. $("body").css('overflow','auto');
  20. },
  21. onComplete:function(){
  22. $("body").css('overflow','hidden');
  23. }
  24. });
  25. });
  26. });