Hi folks!
Is it possible to use the direct link of this GIFV image (Imgur - 18Mo) instead of uploading it to optimise (considerably) the speed of the loading?
Let me know!
Thanks
Hi folks!
Is it possible to use the direct link of this GIFV image (Imgur - 18Mo) instead of uploading it to optimise (considerably) the speed of the loading?
Let me know!
Thanks
Edit: I tried with a Video widget. It works with GIFV files. BUT I canât resize / style it. Any idea? FYI here is the read-only link : https://preview.webflow.com/preview/tribe-landing-page?preview=1fc4c946c018be857fd9aefc0ccc8ba8
As long as youâre using a HTML Code widget you can do anything. So declare your image with a code, or your video as an HTML5 video
Were is the gifv image? BTW and AFAIK, .gifv is only an MP4 file (.mp4 or .m4v) renamed into .gifv. It âworksâ because our modern browsers know how to recognize certain files even if they have a different extension.
OK I see that it is working once published, and that you used the video widget and just gave it the url of the gifv is that correct? Iâm surprised, I wouldânt even have tested this solutionâŚ
Hey Vincent!
I did try it with a âEmbed codeâ widget but itâs not working. The content doesnât appear. Thatâs why I used a âVideoâ widget instead, because I knew that it was only a .mp4 file. The problem is it doesnât really load faster (tested in Incognito mode on Chrome) and I canât style it with a âRadiusâ or âShadowsâ for instance, even if I put in a Div. The quality is perfect though.
You know what I mean? Thank you so much
Alright, what would you advice to create a real HTML5 video that works seamlessly with Webflow? I tried Dropbox but sounds like itâs not working.
Perfect thanks
I have written a post here: Review of EasyHTML5Video generator app: it's very good! - Webflow Tips - Forum | Webflow
Dropbox works. When you get the sharing url for each file, replace www.dropbox.com by dl.dropboxusercontent.com.
Awesome, I am downloading the EasyHTML5Video app right now. Just one question, which one should I choose to just generate and copy-paste the code in the âEmbed codeâ widget on Webflow?
Careful with the app. Set it like this:
http://vincent.polenordstudio.fr/snap/yreh0.jpg
Also donât copy all the code, just the part.
Are you using it for showing a vieo or are you using it for video background?
Read their documentation and experiment, because the app can give you a javascript control bar and other options. Depending on what you want, you make choices.
I am using it to replace GIF files. Load faster and better quality.
Alright thanks Vincent! thatâs how I set it. But I have trouble generating the code. I chose the one without using JS because I donât know whatâs better with JS
I added it on webflow, check it Almost there! Any idea how I could make the video take the full width/height of the div like the image at the right of the Hero header? https://preview.webflow.com/preview/tribe-landing-page?preview=1fc4c946c018be857fd9aefc0ccc8ba8
A good HTML5 video code is otfen a mix between properies added in Webflowsâ UI and properties added within the code.
Try this code and play with min-width, width, min-height and height values:
<video autoplay loop style="min-width:100%; min-height:100%;" poster="https://dl.dropboxusercontent.com/....jpg">
<source src="https://dl.dropboxusercontent.com/....m4v" type="video/mp4" />
<source src="https://dl.dropboxusercontent.com/....webm" type="video/webm" />
<source src="https://dl.dropboxusercontent.com/....ogv" type="video/ogg" />
<source src="https://dl.dropboxusercontent.com/....mp4" />
<img src="https://dl.dropboxusercontent.com/....jpg">
</video>
OK I get it. Nevertheless, itâs the same that at the beginning, I canât change any properties like min-width, width, min-height and height values or even the radius of the âDivâ that contains the âEmbed codeâ widget I mean I can change it but non of the changes is visible.
So basically, I have the same issue as with GIFV. Is there a way to do what I want to do?
Just give a higher z-index to the container
Thanks but unfortunately I still have the same issue: Canât style the âDivâ including the z-index. Sounds like it works for you but not for meâŚ
I can only play with the width/height in the âEmbed widgetâ code that I pasted but I canât get rid of these margins.
Amazing! THANK YOU SO MUCH VINCENT! Little LAST detail I still have this little margin at the bottom. Even with the min-height:100%! Any idea why?
You can give a height to the container: