2011-03-29 20:57:42 +00:00
|
|
|
<!doctype html>
|
2011-03-29 20:32:48 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2011-03-29 20:57:42 +00:00
|
|
|
<meta charset="utf-8">
|
2011-08-03 00:41:50 +00:00
|
|
|
<title>jQuery UI Effects Test Suite</title>
|
2011-03-29 20:32:48 +00:00
|
|
|
|
2015-04-17 16:13:38 +00:00
|
|
|
<script src="../../../external/requirejs/require.js"></script>
|
2015-04-06 16:56:07 +00:00
|
|
|
<script src="../../lib/css.js"></script>
|
2015-04-07 14:55:52 +00:00
|
|
|
<script src="../../lib/bootstrap.js" data-modules="core scale">
|
2011-10-28 19:58:33 +00:00
|
|
|
</script>
|
2011-08-03 21:12:44 +00:00
|
|
|
<style>
|
2011-06-14 20:11:43 +00:00
|
|
|
#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;
|
|
|
|
}
|
2011-06-10 01:36:48 +00:00
|
|
|
|
2011-10-25 22:40:37 +00:00
|
|
|
.ticket7106 {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
.ticket7106.animate {
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
.relative {
|
|
|
|
position: relative;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
}
|
|
|
|
.absolute {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
}
|
|
|
|
.fixed {
|
|
|
|
position: fixed;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
}
|
|
|
|
.static {
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
2011-03-29 20:32:48 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2014-02-20 16:02:23 +00:00
|
|
|
<div id="qunit"></div>
|
2011-03-29 20:32:48 +00:00
|
|
|
<div id="qunit-fixture">
|
2012-12-26 13:35:42 +00:00
|
|
|
<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>
|
2011-03-29 20:32:48 +00:00
|
|
|
</body>
|
|
|
|
</html>
|