29-11-2014 Saat: 02:11
Önizleme:
İstediğiniz kısıma ekleyiniz.
Kodlama alıntıdır.
Kaynak;
http://frmplus.10tr.net/showthread.php?tid=2832
İstediğiniz kısıma ekleyiniz.
Kod:
<script type="text/javascript">
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Mr. J | http://www.huntingground.net/ */
function colourDivs(){
// Set the tag name below that you want to use
el=document.getElementById("container").getElementsByTagName("p")
numOfDivs=el.length
for(i=0;i<numOfDivs;i++){
if((i+1)%2==0) {
el[i].style.backgroundColor="#00009C"
el[i].style.color="#fff"
} else {
el[i].style.backgroundColor="#FFCF31"
el[i].style.color="#000"
}
}
}
// Multiple onload function created by: Simon Willison
// http://simonwillison.net/2004/May/26/addLoadEvent/
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
if (oldonload) {
oldonload();
}
func();
}
}
}
addLoadEvent(function() {
colourDivs();
});
</script>
<style>
#container p {
padding: 10px;
}
</style>
<!-- The section to be highlighted must be placed within this DIV. -->
<div id="container">
<p>
Duyuru Yaz</p>
<p>
Duyuru Yaz</p>
<p>
Duyuru Yaz.</p>
<p>
Duyuru Yaz.</p>
</div>
<!-- End of section to be highlighted. -->
Kodlama alıntıdır.
Kaynak;
http://frmplus.10tr.net/showthread.php?tid=2832