Skip to content

Commit

Permalink
new file: gallery/girl_with_pearl.html
Browse files Browse the repository at this point in the history
	new file:   index.html
  • Loading branch information
vsoch committed Dec 7, 2015
1 parent af137bb commit a59530e
Show file tree
Hide file tree
Showing 2 changed files with 159 additions and 0 deletions.
99 changes: 99 additions & 0 deletions gallery/girl_with_pearl.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<html>

<head>

<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>

<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">

<link href="//cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/css/select2.min.css" rel="stylesheet"/>

<script src="//cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/js/select2.min.js"></script>

</head>

<body>



<div class="container-full" style="margin:0 20 auto; width:100%">

<div class="row" style="position:absolute;top:0px">

<select id="visci_select">


<option value="gallery/jigglypuff.html">gallery/jigglypuff.html</option><option value="gallery/vanessa.html">gallery/vanessa.html</option><option value="gallery/the_scream.html">gallery/the_scream.html</option><option value="gallery/mommy_monster.html">gallery/mommy_monster.html</option><option value="gallery/scream_black.html">gallery/scream_black.html</option><option value="gallery/sunandtree.html">gallery/sunandtree.html</option><option value="gallery/the_kiss_huge.html">gallery/the_kiss_huge.html</option><option value="gallery/face.html">gallery/face.html</option><option value="gallery/starrynight_black.html">gallery/starrynight_black.html</option><option value="gallery/batzmaru.html">gallery/batzmaru.html</option><option value="gallery/spiderman.html">gallery/spiderman.html</option><option value="gallery/girl_with_pearl_huge.html">gallery/girl_with_pearl_huge.html</option><option value="gallery/girl_with_pearl.html">gallery/girl_with_pearl.html</option><option value="gallery/starrynight.html">gallery/starrynight.html</option><option value="gallery/rainbow.html">gallery/rainbow.html</option><option value="gallery/simpsons.html">gallery/simpsons.html</option><option value="gallery/padres.html">gallery/padres.html</option><option value="gallery/garfield.html">gallery/garfield.html</option><option value="gallery/van_gogh_park.html">gallery/van_gogh_park.html</option><option value="gallery/dancer_impressionist.html">gallery/dancer_impressionist.html</option>

</select>

</div>

<div class="row">

<iframe id="visiframe" src="gallery/jigglypuff.html" frameborder="0" noresize="noresize" data-view="fullScreenPreview" style="width:100%;height:100%"></iframe>

</div>

</div>

<script>

$(document).ready(function() {

var visuals = $("#visci_select").select2();

$("#visci_select").change(function(){

var link = $("#visci_select").val()

$("#visiframe").attr("src",link)

})

});

</script>

</body>

</html>

0 comments on commit a59530e

Please sign in to comment.