1234567891011121314151617181920212223242526272829303132333435363738 |
- $(function(){
-
-
- $.getJSON("../../assets/js/landingpage_photos.json", function (data) {
- const tmphtml=template("flow-photos",{photos:data});
-
- $("#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});
-
- $("#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");
- });
- });
|