123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <link rel="import" href="../../bower_components/iron-flex-layout/iron-flex-layout.html">
- <link rel="import" href="../../bower_components/neon-animation/neon-shared-element-animatable-behavior.html">
- <link rel="import" href="../../bower_components/neon-animation/neon-animations.html">
- <link rel="import" href="../../bower_components/paper-styles/paper-styles-classes.html">
- <link rel="import" href="../../bower_components/iron-icon/iron-icon.html">
- <dom-module id="about-page">
- <template>
- <style>
- :host {
- display: block;
- overflow: hidden;
- color: white;
- z-index: 3;
- --paper-tooltip: {
- font-size: 14px;
- background-color: white;
- color: #4285f4;
- }
- --paper-tooltip-opacity:0.95;
- }
-
- #placeholder {
- opacity: 0;
- background-color: #4285f4;
- @apply(--layout-fit);
- }
-
- #container {
- @apply(--layout-fit);
- @apply(--layout-vertical);
- @apply(--layout-center-center);
- background-color: #4285f4;
- padding: 64px 32px 64px 32px;
- box-sizing: border-box;
- }
-
- .logo {
- width: 96px;
- height: 96px;
- }
-
- .slogan {
- text-align: center;
- }
-
- .paper-font-headline {
- margin-bottom: 8px;
- font-size: 32px;
- }
-
- a {
- text-decoration: none;
- color: white;
- }
-
- .center {
- @apply(--layout-vertical);
- @apply(--layout-center-center);
- }
-
- #footer {
- position: absolute;
- left: 50%;
- margin-left: -160px;
- width: 320px;
- bottom: 24px;
- text-align: center;
- }
-
- @media all and (max-height: 370px) {
- #footer {
- width: 320px;
- bottom: 8px;
- }
- }
-
- a {
- display: inline-block;
- text-align: center;
- }
-
- .donate-icon {
- padding-top: 32px;
- width: 32px;
- height: 32px;
- }
-
- .paper-font-subhead {
- font-size: 20px;
- }
-
- a.paper-font-subhead {
- padding-top: 32px;
- }
-
- .share {
- position: absolute;
- top: 16px;
- right: 16px;
- z-index: 10;
- }
-
- .social {
- margin: 16px;
- }
-
- #btn,
- .social a {
- color: white;
- }
-
- .social a {
- text-decoration: none;
- padding: 2px 9px 0 9px;
- }
-
- .share a:hover,
- #btn:hover {
- color: white;
- }
- </style>
- <div id="placeholder"></div>
- <div id="container">
- <div class="share">
- <paper-icon-button id="btn" icon="chat:close" on-tap="_switch"></paper-icon-button>
- </div>
- <div class="center">
- <iron-icon icon="chat:wifi-tethering" class="logo"></iron-icon>
- <div class="paper-font-headline">Snapdrop</div>
- <div class="slogan">The easiest way to transfer files across devices.</div>
- <div class="social">
- <a href="https://twitter.com/snapdrop42" target="_blank">
- <iron-icon icon="chat:twitter"></iron-icon>
- <paper-tooltip for="" position="bottom" offset="14">
- Contact us on Twitter!
- </paper-tooltip>
- </a>
- <a href="https://www.facebook.com/snapdrop.net/" target="_blank">
- <iron-icon icon="chat:facebook"></iron-icon>
- <paper-tooltip for="" position="bottom" offset="14">
- Contact us on Facebook!
- </paper-tooltip>
- </a>
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FDAHZJH3228D6" target="_blank">
- <iron-icon icon="chat:local-cafe"></iron-icon>
- <paper-tooltip for="" position="bottom" offset="14">
- You like Snapdrop?
- <br> Buy me a cup of coffee!
- </paper-tooltip>
- </a>
- <a href="https://github.com/capira12/snapdrop" target="_blank" class="github">
- <iron-icon icon="chat:github"></iron-icon>
- <paper-tooltip for="" position="bottom" offset="14">
- Get involved!
- </paper-tooltip>
- </a>
- <a href="https://github.com/capira12/snapdrop#frequently-asked-questions" target="_blank" class="github">
- <iron-icon icon="chat:help-outline"></iron-icon>
- <paper-tooltip for="" position="bottom" offset="14">
- Frequently Asked Questions
- </paper-tooltip>
- </a>
- </div>
- </div>
- <span id="footer">Built with ♥ by <a href="https://twitter.com/capira42" target="_blank">Robin Linus</a></span>
- </div>
- </template>
- </dom-module>
- <script>
- (function() {
- Polymer({
- is: 'about-page',
- behaviors: [
- Polymer.NeonSharedElementAnimatableBehavior
- ],
- properties: {
- animationConfig: {
- value: function() {
- return {
- 'entry': [{
- name: 'ripple-animation',
- id: 'ripple',
- toPage: this
- }, {
- name: 'fade-out-animation',
- node: this.$.placeholder,
- timing: {
- delay: 250
- }
- }, {
- name: 'fade-in-animation',
- node: this.$.container,
- timing: {
- delay: 50
- }
- }],
- 'exit': [{
- name: 'opaque-animation',
- node: this.$.placeholder
- }, {
- name: 'fade-out-animation',
- node: this.$.container,
- timing: {
- duration: 0
- }
- }, {
- name: 'reverse-ripple-animation',
- id: 'reverse-ripple',
- fromPage: this
- }]
- };
- }
- },
- sharedElements: {
- value: function() {
- return {
- 'ripple': this.$.placeholder,
- 'reverse-ripple': this.$.placeholder
- };
- }
- }
- },
- _switch: function() {
- document.querySelector('#pages').select(0);
- }
- });
- })();
- </script>
|