public
Description: Add viewport selectors to jQuery. For example $("img:below-the-fold").something()
Homepage: http://www.appelsiini.net/projects/viewport
Clone URL: git://github.com/tuupola/jquery_viewport.git
jquery_viewport / 3x2.html
100644 99 lines (82 sloc) 3.177 kb
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Viewport Selectors Demo</title>
<meta name="generator" content="Mephisto" />
<link href="http://www.appelsiini.net/stylesheets/main2.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="http://static.taevas.ee/facebox/facebox.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="alternate" type="application/atom+xml" href="http://feeds.feedburner.com/tuupola" title="Atom feed" />
<script src="/mint/?js" type="text/javascript"></script>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
  _uacct = "UA-190966-1";
  urchinTracker();
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="http://static.taevas.ee/facebox/facebox.js" type="text/javascript" charset="utf-8"></script>
<script src="jquery.viewport.js" type="text/javascript" charset="utf-8"></script>
 
<script type="text/javascript" charset="utf-8">
$(function() {
    var previous = "";
    $(window).bind("scroll", function(event) {
        var message = "<h3>Images in viewport:</h3> ";
        
        $("#photos img:in-viewport").each(function() {
          message = message + $(this).attr("src") + "<br />";
        });
        
        if (message != previous) {
            $.facebox(message);
            previous = message;
        }
    });
});
</script>
 
 
<style type="text/css">
#sidebar {
  width: 0px;
}
#content {
  width: 4750px;
}
</style>
 
</head>
 
<body>
  <div id="wrap">
    <div id="header">
      <p>
        <h1>Viewport</h1><br />
        <small>Selectors which tell if element (or part of it) is in viewport.</small>
        <ul id="nav">
          <li id="first"><a href="/" class="active">weblog</a></li>
          <li><a href="/projects" class="last">projects</a></li>
          <!--
<li><a href="/cv" class="last">cv</a></li>
-->
        </ul>
      </p>
    </div>
    <div id="content">
      
  <h2>Selector test on 3x2 grid.</h2>
  <div class="entry" id="photos">
    
    <p>
      Make your browser window bit smaller than usual. Then scroll around
      page. Small window will tell you which photos are inside the viewport.
 
    </p>
 
    <table><tr><td>
    <img src="img/bmw_m1_hood.jpg" width="765" height="574" alt="BMW M1 Hood">
    <img src="img/bmw_m1_side.jpg" width="765" height="574" alt="BMW M1 Side">
    <img src="img/viper_1.jpg" width="765" height="574" alt="Viper 1">
    </td></tr>
    <tr><td>
    <img src="img/viper_corner.jpg" width="765" height="574" alt="Viper Corner">
    <img src="img/bmw_m3_gt.jpg" width="765" height="574" alt="BMW M3 GT">
    <img src="img/corvette_pitstop.jpg" width="765" height="574" alt="Corvette Pitstop">
    </td></tr>
    </table>
    
    </div>
    <div id="sidebar">
 
  </div>
  
  <div id="footer">
  </div>
 
</body>
</html>