11---
2- layout: layouts/home .njk
2+ layout: layouts/base .njk
33title: Short Film Projects
44---
55
66<div class =" w3-padding-64 w3-content" >
77 <h2 class =" w3-text-light-grey" >Short Film Projects</h2 >
8- <!-- <hr style="width:200px" class="w3-opacity"> -->
98
10- {# بنمشي على كل المشاريع المعلّمة tag "project" ونعكس الترتيب عشان الأحدث يظهر الأول #}
119 {% for p in (collections .project or []) | reverse %}
1210 {% if (p .data .section or ' ' ).toLowerCase () == ' short film projects' %}
1311 <div class =" film-project w3-margin-bottom" >
14-
1512 <h3 class =" w3-text-light-grey" style =" margin :18px 0 8px ;" >{{ p .data .title }} </h3 >
1613
1714 {% if p .data .vimeoId %}
18- <div class =" video-wrapper" style =" margin :12px 0 ;" >
15+ <div class =" video-wrapper" style =" aspect-ratio : 16 / 9 ; width : 100% ; background-image : url (' https://vumbnail.com/{{ p.data.vimeoId }}.jpg' ); background-size : cover ; background-position : center ; cursor : pointer ; position : relative ;" >
16+ <button class =" facade-play-btn" type =" button" aria-label =" Play video" >
17+ <svg viewBox =" 0 0 24 24" width =" 40" height =" 40" aria-hidden =" true" >
18+ <path d =" M8 5.2v13.6L19 12z" fill =" currentColor" />
19+ </svg >
20+ </button >
1921 <iframe
20- class =" lazyload"
21- data-src =" https://player.vimeo.com/video/{{ p.data.vimeoId }}?background=1&autoplay=1&loop=1&muted=1"
22- width =" 100%" height =" 420" frameborder =" 0"
23- loading =" lazy"
22+ data-src =" https://player.vimeo.com/video/{{ p.data.vimeoId }}?autoplay=1&color=ffffff&title=0&byline=0&portrait=0"
23+ width =" 100%" height =" 100%" frameborder =" 0"
24+ class =" lazy-vimeo"
2425 allow =" autoplay; fullscreen; picture-in-picture"
2526 allowfullscreen >
2627 </iframe >
2728 </div >
2829 {% endif %}
2930
30- {# لو محتوى الصفحة فيه تفاصيل نصية (التاريخ/الأدوات/ملاحظات) هتظهر هنا #}
3131 {% if p .templateContent %}
3232 <div class =" w3-text-grey" style =" line-height :1.7 ;" >
3333 {{ p .templateContent | safe }}
@@ -39,3 +39,32 @@ title: Short Film Projects
3939 {% endif %}
4040 {% endfor %}
4141</div >
42+
43+ <style >
44+ .facade-play-btn {
45+ position : absolute ;
46+ top : 50% ;
47+ left : 50% ;
48+ transform : translate (-50% , -50% );
49+ width : 70px ;
50+ height : 70px ;
51+ background : rgba (0 , 0 , 0 , 0.7 );
52+ border-radius : 50% ;
53+ display : flex ;
54+ align-items : center ;
55+ justify-content : center ;
56+ cursor : pointer ;
57+ z-index : 2 ;
58+ border : none ;
59+ transition : transform 0.3s ease , background-color 0.3s ease ;
60+ }
61+
62+ .facade-play-btn :hover {
63+ transform : translate (-50% , -50% ) scale (1.15 );
64+ background-color : rgba (0 , 0 , 0 , 0.9 );
65+ }
66+
67+ .facade-play-btn svg {
68+ fill : #fff ;
69+ }
70+ </style >
0 commit comments