Skip to content

Commit

Permalink
iframe
Browse files Browse the repository at this point in the history
  • Loading branch information
malnasatu committed Nov 17, 2023
1 parent eecdcf8 commit bd19620
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions SystemDescription/Settings/widgets.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,42 @@ Lehetőség van arra, hogy a rendszer által generált hosszú (statikus és ez
A rövid/custom widget linkje (példa)
```html
https://places.neery.net/land/neery_etterem
```


## iframe komponens

Példa beillesztés egy "üres" html file esetében

```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body, html {
height: 100%;
margin: 0;
}
.iframe-container {
position: relative;
width: 100%;
height: 100%;
}
.responsive-iframe {
width: 100%;
height: 100%;
}
</style>
<title>Embedded Iframe Example</title>
</head>
<body>
<div class="iframe-container">
<iframe class="responsive-iframe" src="paste-your-iframe-link-here" frameborder="0" allowfullscreen></iframe>
</div>
</body>
</html>
```

0 comments on commit bd19620

Please sign in to comment.