<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
/>
<
meta
http-equiv
=
"X-UA-Compatible"
content
=
"IE=edge"
/>
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1.0"
/>
<
link
rel
=
"stylesheet"
href
=
<
link
rel
=
"stylesheet"
href
=
</
script
>
</
script
>
<
style
>
#heading {
color: green;
}
#title {
font-style: bold;
}
</
style
>
</
head
>
<
body
>
<
center
>
<
h1
id
=
"heading"
>GeeksforGeeks</
h1
>
<
strong
id
=
"title"
>
Onsen UI CSS Component Material Action Sheet
</
strong
>
<
br
/><
br
/>
<
button
class
=
"button"
onclick
=
"openSheet()"
>
Open Material Action Sheet
</
button
>
</
center
>
<
div
class="gfg-action action-sheet-mask
action-sheet-mask--material"></
div
>
<
div
class="gfg-action action-sheet
action-sheet--material">
<
button
class="action-sheet-button
action-sheet-button--material">
<
i
class="ion-ios-link
action-sheet-icon--material"></
i
>
Submit
</
button
>
<
button
onclick
=
"closeSheet()"
class="action-sheet-button
action-sheet-button--material">
<
i
class="ion-ios-close
action-sheet-icon--material"></
i
>
Close
</
button
>
</
div
>
<
script
>
function openSheet() {
$('.gfg-action ').show()
}
function closeSheet() {
$('.gfg-action ').hide()
}
closeSheet()
</
script
>
</
body
>
</
html
>