Skip to content

Instantly share code, notes, and snippets.

@nucleartide
Last active February 11, 2016 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nucleartide/89783519b0b7e5bdc846 to your computer and use it in GitHub Desktop.
Save nucleartide/89783519b0b7e5bdc846 to your computer and use it in GitHub Desktop.
testing fixed headers
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle'
});
import Ember from 'ember';
export default Ember.Component.extend({
didInsertElement() {
console.log('inserted element');
Ember.$('.container').on('scroll', function() {
const scrollTop = Ember.$('.container').scrollTop();
Ember.$('.header').css('top', scrollTop);
});
return this._super(...arguments);
},
willDestroyElement() {
return this._super(...arguments);
}
});
<div class="container">
<div class="header">
<div class="cell" style="left: 0;">header</div>
<div class="cell" style="left: 300px;">header</div>
<div class="cell" style="left: 600px;">header</div>
<div class="cell" style="left: 900px;">header</div>
<div class="cell" style="left: 1200px;">header</div>
</div>
<div class="content">this is the content</div>
</div>
* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; margin: 0; }
.ember-view { width: 100%; height: 100%; }
.container {
width: 100%;
height: 100%;
overflow: scroll;
}
.header { position: relative; }
.header .cell { position: absolute; }
.header { height: 50px; }
.content { height: 5000px; background-color: #bbb; }
.header .cell {
width: 300px;
height: 50px;
border-right: solid 1px black;
background-color: tomato;
}
{
"version": "0.5.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.2.0/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.2.0/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.2.0/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment