This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.

30 lines
825 B
PHP
Raw Normal View History

2015-03-17 12:07:18 +01:00
@extends('frontend/template')
@section('content')
2015-03-17 17:21:37 +01:00
<div style="text-align:center">
2015-03-17 19:35:31 +01:00
<img id="imgRef" src="{{ $ref -> image }}"><br>
2015-03-17 17:21:37 +01:00
2015-03-17 19:24:29 +01:00
<div class="game" onclick="location.href='{{ URL::to('memo') }}'"><img src="imgs/memo/memo2.png"></div>
<div class="game" onclick="location.href='{{ URL::to('puzzle') }}'"><img src="imgs/puzzle/puzzle.png"></div>
2015-03-17 17:21:37 +01:00
</div>
@endsection
2015-03-17 19:35:31 +01:00
@section('page-scripts')
<script>
var redirect;
document.getElementById('imgRef').addEventListener("mousedown", function() {
redirect = setTimeout(function(){location.href="{{URL::to('choisirref')}}"}, 3000);
});
document.getElementById('imgRef').addEventListener("mouseup", function() {
clearTimeout(redirect);
});
</script>
@endsection