added animation page

This commit is contained in:
Nico Melone
2025-02-08 16:20:44 -06:00
parent 9bd95c8ccd
commit 2b21b7f5e7
5 changed files with 119 additions and 0 deletions

View File

@@ -16,6 +16,7 @@
<a href="{{ url_for('add_item') }}">Add Item</a>
<a href="{{ url_for('get_weather') }}">Weather</a>
<a href="{{ url_for('rank') }}">Relative Rank</a>
<a href="{{ url_for('motion') }}">Motion Graphics</a>
<a href="{{ url_for('about') }}">About</a>
</nav>
</header>

11
templates/motion.html Normal file
View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block content %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/motion.css') }}">
<div id="motion" class="motion-test-1"></div>
<div style="height: 300px;"></div>
<div id="linear" class="motion-test-2">linear</div>
<div id="ease" class="motion-test-2">ease</div>
<div id="ease-in" class="motion-test-2">ease-in</div>
<div id="ease-out" class="motion-test-2">ease-out</div>
<div id="ease-in-out" class="motion-test-2">ease-in-out</div>
{% endblock %}