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.
alexandre-pereira 91b4183afe sqs
2015-03-18 12:03:11 +01:00

38 lines
1.0 KiB
PHP
Executable File

@extends('frontend/template')
@section('content')
<div style="text-align:center">
<div id="imgRef" style="background-image:url('{{ $ref -> image }}');"></div><br>
<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>
</div>
@endsection
@section('page-scripts')
<script>
var redirect;
document.getElementById('imgRef').addEventListener("click", function() {
return false;
});
document.getElementById('imgRef').addEventListener("mousedown", function() {
redirect = setTimeout(function(){location.href="{{URL::to('choisirref')}}"}, 3000);
return false;
});
document.getElementById('imgRef').addEventListener("mouseup", function() {
clearTimeout(redirect);
return false;
});
</script>
@endsection