This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yvonne Yip
committed
Aug 4, 2014
1 parent
8cab275
commit 4c7dc4c
Showing
4 changed files
with
333 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<!doctype html> | ||
<!-- | ||
Copyright 2013 The Polymer Authors. All rights reserved. | ||
Use of this source code is governed by a BSD-style | ||
license that can be found in the LICENSE file. | ||
--> | ||
<html> | ||
<head> | ||
|
||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | ||
|
||
<title>core-transition</title> | ||
|
||
<script src="../platform/platform.js"></script> | ||
|
||
<link href="core-transition-css.html" rel="import"> | ||
|
||
<style> | ||
#animate-me { | ||
background-color: lime; | ||
position: fixed; | ||
top: 100px; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
</style> | ||
|
||
</head> | ||
<body unresolved> | ||
|
||
<div id="animate-me" hidden></div> | ||
|
||
<select id="sel" onchange="setup();"> | ||
<option value="core-transition-fade" selected>core-transition-fade</option> | ||
<option value="core-transition-center">core-transition-center</option> | ||
<option value="core-transition-top">core-transition-top</option> | ||
<option value="core-transition-bottom">core-transition-bottom</option> | ||
<option value="core-transition-left">core-transition-left</option> | ||
<option value="core-transition-right">core-transition-right</option> | ||
</select> | ||
|
||
<button onclick="stuff();">toggle</button> | ||
|
||
<script> | ||
|
||
document.addEventListener('polymer-ready', function() { | ||
// initial setup | ||
setup(); | ||
document.getElementById('animate-me').removeAttribute('hidden'); | ||
}); | ||
|
||
var meta; | ||
var transition; | ||
var state = { | ||
opened: false | ||
} | ||
|
||
function getMeta() { | ||
if (!meta) { | ||
meta = document.createElement('core-meta'); | ||
meta.type = 'transition'; | ||
} | ||
return meta; | ||
} | ||
|
||
function setup() { | ||
var target = document.getElementById('animate-me'); | ||
|
||
if (transition) { | ||
transition.teardown(target); | ||
} | ||
|
||
var value = document.getElementById('sel').selectedOptions[0].value; | ||
transition = getMeta().byId(value); | ||
transition.setup(target); | ||
} | ||
|
||
function stuff() { | ||
var target = document.getElementById('animate-me'); | ||
state.opened = !state.opened; | ||
transition.go(target, state); | ||
} | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters