diff --git a/mobile/download/downApp.html b/mobile/download/downApp.html index 3a577f3..e193a73 100644 --- a/mobile/download/downApp.html +++ b/mobile/download/downApp.html @@ -31,6 +31,10 @@ background-size: 100% 100%; margin: 0 auto; } + .downapp-en{ + background: url(images/downapp-en.png)no-repeat; + background-size: 100% 100%; + } #room-qrcode{ display: block; position: absolute; @@ -52,13 +56,16 @@ <script src="../../lib/qrcode.min.js"></script> <script> $(function(){ - + if(sessionStorage.lang==1){ + $(".downapp").addClass("downapp-en") + } if(sessionStorage.pmt!=undefined&&sessionStorage.pmt!='undefined'){ var html=[]; html+='<p id="room-qrcode"></p>' $(".downapp").html(html); new QRCode(document.getElementById("room-qrcode"),sessionStorage.pmt); } + }) </script> </html> \ No newline at end of file diff --git a/mobile/download/images/downapp-en.png b/mobile/download/images/downapp-en.png new file mode 100644 index 0000000..2290a18 Binary files /dev/null and b/mobile/download/images/downapp-en.png differ