123456789101112131415161718192021222324252627282930313233343536373839 |
- $(function(){
-
- var look =(window.location.search?0:1)
- $.getJSON("../../assets/js/landingpage_photos.json", function (data) {
-
- const tmphtml=template("flow-photos",{photos:data,look:look});
-
- $("#project-photo-row").append(tmphtml);
- });
-
- $(".query").click(function(){
- $("#project-photo-row").empty();
-
- $.getJSON("../../assets/js/landingpage_photos.json", function (data) {
- data=data.sort(()=>{
- return Math.random()>0.5?-1:1
- })
- const tmphtml=template("flow-photos",{photos:data,look:look});
-
- $("#project-photo-row").append(tmphtml);
- });
- })
-
- $("#project-photo-row").on("click",".imgoptionspan",function(){
- var code1="rgb(209, 211, 213)"
- var code2="#e04460"
- var value=$(this).css("background-color");
- console.log(value)
- if(code1==value){
- $(this).css("background-color",code2)
- }else{
- $(this).css("background-color",code1)
- }
- });
-
- $(".contact-btn").on("click",function(){
- window.open("../company/company_contact.html");
- });
- });
|