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.

31 lines
882 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-18 11:44:19 +01:00
<div id="imgRef" style="background-image:url('{{ $ref -> image }}');"></div><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>
2015-03-18 11:44:19 +01:00
<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);
2015-03-18 11:50:14 +01:00
return false;
2015-03-17 19:35:31 +01:00
});
document.getElementById('imgRef').addEventListener("mouseup", function() {
clearTimeout(redirect);
});
</script>
@endsection