123456789101112131415161718192021222324252627282930313233343536373839404142 |
- $(function(){
-
- $('.selectpicker').selectpicker({
- template:{
- caret:'<span class="sel-icon glyphicon glyphicon-menu-down"></span>'
- }
- });
-
- $.getJSON("../../assets/js/landingpage_photos.json", function (data) {
- const tmphtml=template("flow-photos",{photos:data});
-
- $("#project-photo-row").append(tmphtml);
- });
-
-
- $("#project-photo-row").on("click",".thumbnail img",function(){
-
- var loginUser= window.localStorage.getItem("loginUser");
- if(!loginUser){
- window.location.href="../signin/signin.html"
- return
- }
-
-
- let imgname=$(this).data('imgname');
- zeroModal.show({
- url:'landingpage_details.html?img='+imgname,
- iframe:true,
- width:'95%',
- height:'95%',
- onClosed:function(){
- $("body").css('overflow','auto');
- },
- onComplete:function(){
- $("body").css('overflow','hidden');
- }
- });
-
-
- });
-
- });
|