-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·33 lines (28 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>fancyBox - iframe demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
img {
width: 100%;
height: 100%;
position: fixed; /*圖片填滿視窗*/
}
</style>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$( document ).ready(function() {
$.getJSON("https://spreadsheets.google.com/feeds/list/12Kg_gazD75Tq9ItucMXzxvttCWiRlLsGr_iulD3P5U0/1/public/values?alt=json",function(json){
$('img').attr('src',json['feed']['entry']['0']['gsx$picture']['$t']);
$('a').attr('href',json['feed']['entry']['0']['gsx$hyper']['$t']);
}).done()
});
</script>
</head>
<body>
<div>
<a href="https://www.facebook.com/CoursePickingHelper/" target="_blank"><img src="https://www.dropbox.com/s/jmanvs6hfz754k1/382098_566877043338850_1529550463_n.jpg?dl=1" alt="" /></a>
</div>
</body>
</html>