jquery-ui/tests/unit/effects/effects.html

107 lines
1.6 KiB
HTML
Raw Normal View History

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Effects Test Suite</title>
<script src="../../../external/requirejs/require.js"></script>
<script src="../../lib/css.js"></script>
2015-04-07 14:55:52 +00:00
<script src="../../lib/bootstrap.js" data-modules="core scale">
</script>
2011-08-03 21:12:44 +00:00
<style>
#qunit-fixture {
width: 1000px;
height: 1000px;
}
.hidden {
display: none;
}
.test {
background: #000;
border: 0;
width: 100px;
height: 100px;
}
.testAddBorder {
border: 10px solid #000;
}
.testChildren,
.testChangeBackground {
background: #fff;
}
.test h2 {
font-size: 10px;
}
.testChildren h2 {
font-size: 20px;
}
.relWidth {
width: 50%;
}
.relHeight {
height: 50%;
}
.testScale {
border: 5px solid #000;
padding: 5px;
margin: 5px;
width: 50px;
height: 50px;
}
.ticket7106 {
width: 50px;
height: 50px;
}
.ticket7106.animate {
width: 100px;
}
.relative {
position: relative;
top: 0px;
left: 0px;
}
.absolute {
position: absolute;
top: 0px;
left: 0px;
}
.fixed {
position: fixed;
top: 0px;
left: 0px;
}
.static {
position: static;
}
</style>
</head>
<body>
2014-02-20 16:02:23 +00:00
<div id="qunit"></div>
<div id="qunit-fixture">
<div id="elem" class="test"></div>
<div class="hidden test">
<div>.</div>
</div>
<div class="animateClass test">
<h2>Child Element Test</h2>
</div>
<div class="relWidth relHeight testAddBorder">
<h2>Slide with relative width</h2>
</div>
<div class="testScale"></div>
<div class="ticket7106"></div>
<div class="relative"></div>
<div class="absolute"></div>
<div class="fixed"></div>
<div class="static"></div>
2011-08-03 21:12:44 +00:00
</div>
</body>
</html>