Flutter web in an iframe with dynamic height - html

I have embedded a flutter web app onto my Wordpress site. The flutter app is connected to an API and has a varying height. Is there a way to make the Iframe change its height depending on what's shown in it?
My code so far:
<iframe src="My-URL" height="600" width="100%"></iframe>
Side note, is there a way to turn off scrolling when I hover over the iframe (I still need to be able to click on it).
scrolling="no"
doesn't seem too be working.
Thankful for all answers :)

Related

Google PDF Viewer default fit to width embed

When I embed a pdf using google's PDF viewer
<iframe src="https://drive.google.com/viewerng/viewer?embedded=true&url=http://jugglegood.com/out/scot-nery-resume-grand.pdf" ></iframe>
it defaults to displaying the pdf with a lot of space around it.
Then, I click the + magnify (zoom) button at the bottom of the viewer and it zooms to fit to width.
Is there a way to default using parameters or something to the fit to width zoom version of the embed? I couldn't find an answer, so i even tried using jquery to manually click the zoom button... no dice.
here are some ideas:
check your CSS to see if there are any settings for a class, id, iframe - your stylesheet could be telling the browser how to display the PDF on screen.
You can tell the iframe in the HTML to be 100% width. I run into this a lot for Google Maps hosted on a site.
<iframe src="https://drive.google.com/viewerng/viewer?embedded=true&url=http://jugglegood.com/out/scot-nery-resume-grand.pdf" width="100%" aria-hidden="false" tabindex="0"></iframe>
I keep the aria-hidden [this is for screen readers for people who are blind] and tabindex [keyboard navigation for people with disabilites]. Pleasee see my GitHub WAPS system for website code and design for people with diverse needs.

Load pdf in html by embeding or using iframe in app

Building an app and I need to show a pdf on a screen within the app. I am open to either embedding it or using an iframe, but no matter what I do, I can't see the right side of the document. I can see it lengh-wise but no resizing methods are working to see the entire width. Two of my 100 approaches are below. Any help would be great. Designing for iPhone 6 primarily.
<embed src="filename.pdf" width="375" height="625">
<iframe id="menupdf" src="filename.pdf#zoom=100" width="1000" height="1000"></iframe

My iframe is not showing for some reason

I cant work out why my iframe is not displaying correctly. There is lots to be done with it in terms of customization etc still but it isn't even displaying for some reason. I recently had SSL integrated. Here is the URL for the site where it is not displaying:
https://www.guildinator.com/domains.html
It should look like this:
http://guildinator.com/instantdomain/
The code I am using is
<iframe src "http://www.guildinator.com/instantdomain/" width="200" height="200"></iframe>
I know the width and height are weird but it was just to initially get the iframe in(eventually i want to turn it into a dynamic iframe). But I just can't work out why the iframe isn't displaying with such a basic code.
Thanks in advance for any help
i thinks you missing = in src
<iframe src="http://www.guildinator.com/instantdomain/" width="200" height="200"></iframe>

Is there a way to programmatically scroll to a PDF page within a Ipad Safari?

I'm current trying to display a pdf inside an iframe
<iframe id="iFrame" height="583px" width="785px" src="pdf/test.pdf" scrolling="yes" ></iframe>
after i test on ipad, i found out that it cannot be scroll. is there any solution to this?
Thanks.
I would highly suggest using Scribd's service, it even let's you restrict user downloads if that is a concern.
If you place two fingers on the text in the pdf, you can scroll that text instead of the whole page.

Hiding the Info Window of a business result in an iframe embedded Google Map

I am attempting to embed a google map into a page of a website using google maps' iframe capabilities (so that I can avoid having to add things within the head and inside the body tag of the page)
When I create the iframe code, everything is fine except for the fact that the info window associated with the pin is opening by default when the page loads.
I'm wondering if anyone has successfully overridden this behavior. I've found a few posts describing how to do it for a geocoded address but not for a specific place of business (it seems the attributes are different)
Code:
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?q=Madison+Square+Garden+New+York+NY&hl=en&cd=1&ei=PoNXS-hcmuLJBNfexZUI&sig2=dFymmpNhsjY6dEvjphBbPQ&sll=40.731053,-73.951703&sspn=0.127506,0.130247&ie=UTF8&view=map&cid=5487804314630162138&ved=0CCUQpQY&hq=Madison+Square+Garden+New+York+NY&hnear=&ll=40.750354,-73.992491&spn=0.006295,0.006295&iwloc=A&output=embed"></iframe>
(This is the suggestion I found on 'net that does not seem to work for a specific place of business: http://www.sugarwebdev.co.uk/blog/hide-or-remove-the-info-window-on-an-embedded-google-map/)
I tried the solution posted in your question, using the iframe code you provided and it worked fine. I added:
&iwloc=near
right after the 'output=embed' at the end.