<!DOCTYPE html>
<
html
>
<
head
>
<
link
href
=
rel
=
"stylesheet"
/>
<
script
src
=
</
script
>
<
script
src
=
</
script
>
<
style
>
body {
padding: 10px;
margin: 10px;
}
#container1 {
height: 1000px;
}
#container2 {
height: 1000px;
}
</
style
>
</
head
>
<
body
>
<
div
class
=
"ui container"
>
<
center
>
<
div
class
=
"ui header green"
>
<
h1
>GeeksforGeeks</
h1
>
</
div
>
<
strong
>Semantic UI Static animation</
strong
>
</
center
>
</
div
>
<
div
class
=
"ui segment"
>
<
h1
>Welcome to GeeksforGeeks</
h1
>
<
p
>Find the best programming tutorials here.</
p
>
<
center
>
<
img
src
=
alt
=
"GeeksforGeeks"
class
=
"gfg icon"
/>
<
br
/>
<
br
/>
<
button
class
=
"ui button"
onclick
=
"runAnimation('jiggle')"
>
Jiggle
</
button
>
<
button
class
=
"ui button"
onclick
=
"runAnimation('flash')"
>
Flash
</
button
>
<
button
class
=
"ui button"
onclick
=
"runAnimation('shake')"
>
Shake
</
button
>
<
button
class
=
"ui button"
onclick
=
"runAnimation('pulse')"
>
Pulse
</
button
>
<
button
class
=
"ui button"
onclick
=
"runAnimation('tada')"
>
Tada
</
button
>
<
button
class
=
"ui button"
onclick
=
"runAnimation('bounce')"
>
Bounce
</
button
>
<
button
class
=
"ui button"
onclick
=
"runAnimation('glow')"
>
Glow
</
button
>
</
center
>
</
div
>
<
script
>
function runAnimation(animation) {
$('.gfg.icon').transition(animation)
}
</
script
>
</
body
>
</
html
>