forked from ktrue/CU-HWS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebcamsmall.php
More file actions
15 lines (15 loc) · 767 Bytes
/
webcamsmall.php
File metadata and controls
15 lines (15 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!-- webcamsmall.php begin -->
<style>
.webcam{
-webkit-border-radius:4px; -moz-border-radius:4px; -o-border-radius:4px; -ms-border-radius:4px;border-radius:4px;border:solid RGBA(84, 85, 86, 1.00) 2px;width:275px;height:145px;margin:2px;}
</style>
<!-- HOMEWEATHER STATION TEMPLATE SIMPLE WEBCAM -add your url as shown below do NOT delete the class='webcam' !!! -->
<?php
# Also remember to change webcam.php with your selected webcam URL
#
#$myCamUrl = "http://icons.wunderground.com/webcamramdisk/k/c/KCASARATOGA/1/current.jpg";
#$myCamUrl = 'http://travelingrvwx.com/webcam/jpgwebcam.jpg';
$myCamUrl = "http://saratogawx.dyndns.org:18080/netcam.php";
?>
<img src="<?php echo $myCamUrl.'?'.time(); ?>" alt="weathercam" class="webcam"/>
<!-- webcamsmall.php end -->