2 <meta name=
"viewport" content=
"width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
7 -webkit-border-radius:
0;
8 box-sizing: border-box;
9 -moz-box-sizing: border-box;
10 -ms-box-sizing: border-box;
11 -webkit-box-sizing: border-box;
12 /*font-family: inherit;*/
19 text-decoration: none;
20 vertical-align: baseline;
24 -webkit-touch-callout: none;
25 -webkit-text-size-adjust: none;
26 -webkit-user-select: none;
34 background: url(cydget://_UIImageWithName/UILCDBackground.png);
40 font-family: "LockClock-Light";
41 padding:
0px
0px
0px
1px;
44 text-shadow: -
0.5px -
1px
1px black;
48 font-family: "Helvetica";
51 text-shadow: -
0.5px -
1px
1px black;
54 @media only screen and (min-device-width:
320px) and (max-device-width:
480px) {
66 @media only screen and (min-device-width:
768px) and (max-device-width:
1024px) and (orientation: landscape) {
78 @media only screen and (min-device-width:
768px) and (max-device-width:
1024px) and (orientation: portrait) {
95 font-family: "Helvetica";
121 vertical-align:middle;
124 @media only screen and (min-device-width:
320px) and (max-device-width:
480px) {
130 @media only screen and (min-device-width:
768px) and (max-device-width:
1024px) and (orientation: landscape) {
136 @media only screen and (min-device-width:
768px) and (max-device-width:
1024px) and (orientation: portrait) {
141 </style></head><body>
143 <script type=
"text/cycript" src=
"lcd.cy"></script>
144 <script type=
"text/cycript">
145 dlopen("/System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary", RTLD_GLOBAL);
147 var old = [PLCameraAlbum respondsToSelector:@selector(sharedInstance)];
151 album = [[PLCameraAlbum sharedInstance] images];
153 album = [[[PLPhotoLibrary sharedPhotoLibrary] albums][
0] contents];
155 var jpeg = null, length = album.length;
156 for (var i =
0; i !=
5; ++i) {
157 var object = album[Math.floor(Math.random() * length)];
159 jpeg = [[object fileGroup] pathForFullSizeImage];
161 jpeg = '/var/mobile/Media/' + [object directory].toString() + '/' + [object filename].toString();
167 for (var i =
0; i != length; ++i) {
168 jpeg = [[album[Math.floor(i)] fileGroup] pathForFullSizeImage];
173 document.write('
<img src=
"' + jpeg.toString() + '"/>');