Temat: Dynamiczna zmiana tla witryny.
http://www.thought-after.com/2006/05/css-random-backgr...
lub
http://plugins.jquery.com/project/RandomBackgroundImag...
Pierwsze lepsze, które wpadło mi w oko.
Ogólnie google > random background images
lub tez skrypcik
<script type="text/javascript">
// Get current month
var currDate=new Date();
var currMonth = currDate.getDate();
// Month returned by getDate() is 0 to 11 so add 1
currMonth = parseInt(currMonth) + 1;
// Based on month assign style sheet name
var newCSS = "default.css";
if (currMonth >= 1) newCSS = "winter.css"; // Month is January or greater
if (currMonth >= 3) newCSS = 'spring.css'; // Month is March or greater
if (currMonth >= 6) newCSS = 'summer.css'; // Month is June or greater
if (currMonth >= 9) newCSS = 'fall.css'; // Month is September or greater
if (currMonth = 12) newCSS = 'winter.css'; // Month is December
// Assign new style sheet name as the new href for "siteCSS" LINK tag
document.getElementById('siteCSS').href = newCSS;
</script>
/edit
lub też modulik
http://extensions.joomla.org/extensions/style-a-design...
lub
http://extensions.joomla.org/extensions/photos-a-image...Daniel Chlewicki edytował(a) ten post dnia 14.03.10 o godzinie 18:55