Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamNgiam committed Sep 10, 2024
0 parents commit b03fa01
Show file tree
Hide file tree
Showing 15 changed files with 412 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

.DS_Store
.vscode/settings.json
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Animal Farm

## Contributors:

William XQ Ngiam, Nicole L Nelson

## Project

This project aims to examine at what stage of development can children use associative learning ('chunking') to improve their working memory performance. The associative learning requires the child to notice the statistical regularities, and then to efficiently apply those gains.
35 changes: 35 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<title>Animal Farm</title>
<!-- For local runs
<link rel="stylesheet" type="text/css" href="lib/vendors/jspsych-7.3.4/css/jspsych.css"/>
<script src="jspsych/jspsych.js"></script>
<script src="jspsych/plugin-survey-text.js"></script>
<script src="jspsych/plugin-preload.js"></script>
<script src="jspsych/plugin-fullscreen.js"></script>
<script src="jspsych/plugin-html-button-response.js"></script>
<script src="jspsych/plugin-html-keyboard-response.js"></script>
<script src="jspsych/plugin-image-keyboard-response.js"></script>
<script src="jspsych/plugin-canvas-keyboard-response.js"></script>
<script src="jspsych/plugin-canvas-button-response.js"></script>
<script type="text/javascript" src="lib/jspsych-7-pavlovia-2022.1.1.js"></script>
<link href="jspsych/jspsych.css" rel="stylesheet" type="text/css" />
--->

<script src="https://unpkg.com/jspsych@7.3.4"></script>
<script src="https://unpkg.com/@jspsych/plugin-survey-text@1.1.3"></script>
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.3"></script>
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.3"></script>
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.3"></script>
<script src="https://unpkg.com/@jspsych/plugin-fullscreen@1.2.1"></script>
<script src="https://unpkg.com/@jspsych/plugin-image-keyboard-response@1.1.3"></script>
<script src="https://unpkg.com/@jspsych/plugin-canvas-keyboard-response@1.1.3"></script>
<script src="https://unpkg.com/@jspsych/plugin-canvas-button-response@1.1.3"></script>
<script src="https://unpkg.com/@jspsych-contrib/plugin-pipe@0.4"></script>
<link href="https://unpkg.com/jspsych@7.3.4/css/jspsych.css" rel="stylesheet" type="text/css">
</head>
<body></body>
<script src="js/task.js"></script>
</script>
</html>
Loading

0 comments on commit b03fa01

Please sign in to comment.