svg
This commit is contained in:
parent
4e65d68057
commit
02906d09e2
|
@ -25,10 +25,10 @@
|
||||||
<img style="display:none;" id="illustration_illustration_img" src="/{{ appAlias }}/uploads/illustration/{{illustrations[0].illustration}}">
|
<img style="display:none;" id="illustration_illustration_img" src="/{{ appAlias }}/uploads/illustration/{{illustrations[0].illustration}}">
|
||||||
</div>
|
</div>
|
||||||
<div style="width:30%; display:flex; flex-direction: column; align-items:center;padding-top:15px">
|
<div style="width:30%; display:flex; flex-direction: column; align-items:center;padding-top:15px">
|
||||||
<img src="{{asset("uploads/avatar/"~user.avatar)}}" style="width:150px; height:150px;border-radius:100%">
|
<img id="avatar" src="{{asset("uploads/avatar/"~user.avatar)}}" style="width:150px; height:150px;border-radius:100%">
|
||||||
<h2 style="flex-grow:1">{{user.pseudo}}</h2>
|
<h2 style="flex-grow:1">{{user.pseudo}}</h2>
|
||||||
{% set qrCode = qr_code_result(absolute_url(path("app_home_user",{userpseudo:user.slug}))) %}
|
{% set qrCode = qr_code_result(absolute_url(path("app_home_user",{userpseudo:user.slug}))) %}
|
||||||
<img src="{{ qrCode.dataUri }}" width="200px" />
|
<img id="qr" src="{{ qrCode.dataUri }}" width="200px" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -56,9 +56,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function resizeImage() {
|
function resizeImage() {
|
||||||
height=$(window).height()-35;
|
height=$(window).height()-70;
|
||||||
$("#content").height($(window).height()-35);
|
$("#content").height($(window).height()-35);
|
||||||
$("#illustration_illustration_img").css({height:height,width:'auto'});
|
$("#illustration_illustration_img").css({height:height,width:'auto'});
|
||||||
|
$("#avatar").height($(window).height()/6);
|
||||||
|
$("#avatar").width($(window).height()/6);
|
||||||
|
$("#qr").height($(window).height()/6);
|
||||||
|
$("#qr").width($(window).height()/6);
|
||||||
|
|
||||||
width=$(window).width()-90;
|
width=$(window).width()-90;
|
||||||
if($("#illustration_illustration_img").width()>width)
|
if($("#illustration_illustration_img").width()>width)
|
||||||
|
|
Loading…
Reference in New Issue