mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
675 B
28 lines
675 B
<!DOCTYPE html> |
|
<html> |
|
|
|
<head> |
|
<title>Fifty shades of cold</title> |
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
<link id="fav" rel="shortcut icon" type="image/x-icon" href="data:image/x-icon;,"> |
|
<link rel="stylesheet" type="text/css" href="./fifty-shades-of-cold.data.css"> |
|
|
|
</head> |
|
|
|
<body> |
|
<script type="module"> |
|
|
|
import { generateClasses, generateColdShades, choseShade } from './fifty-shades-of-cold.js' |
|
|
|
generateClasses() |
|
generateColdShades() |
|
|
|
const divs = [...document.querySelectorAll('div')] |
|
divs.map((d) => { |
|
d.addEventListener('click', () => choseShade(d.textContent)) |
|
}) |
|
|
|
</script> |
|
</body> |
|
|
|
</html> |