Line 21: | Line 21: | ||
} | } | ||
</style> | </style> | ||
+ | |||
+ | |||
+ | <script> | ||
+ | |||
+ | // Y axis scroll speed | ||
+ | var velocity = 0.5; | ||
+ | |||
+ | function update(){ | ||
+ | var pos = $(window).scrollTop(); | ||
+ | $('#movingBanner').each(function() { | ||
+ | var $element = $(this); | ||
+ | // subtract some from the height b/c of the padding | ||
+ | var height = $element.height()-18; | ||
+ | $(this).css('backgroundPosition', '50% ' + Math.round((height - pos) * velocity) + 'px'); | ||
+ | }); | ||
+ | }; | ||
+ | |||
+ | $(window).bind('scroll', update); | ||
+ | |||
+ | </script> | ||
+ | |||
+ | |||
+ | |||
</head> | </head> |
Revision as of 20:53, 10 August 2016
Results
Scrolling Banner
Here you can describe the results of your project and your future plans.
What should this page contain?
- Clearly and objectively describe the results of your work.
- Future plans for the project
- Considerations for replicating the experiments
Project Achievements
You can also include a list of bullet points (and links) of the successes and failures you have had over your summer. It is a quick reference page for the judges to see what you achieved during your summer.
- A list of linked bullet points of the successful results during your project
- A list of linked bullet points of the unsuccessful results during your project. This is about being scientifically honest. If you worked on an area for a long time with no success, tell us so we know where you put your effort.
Inspiration
See how other teams presented their results.