Extrem Tutorials
Doriți să reacționați la acest mesaj? Creați un cont în câteva clickuri sau conectați-vă pentru a continua.

Extrem TutorialsConectare

Peste 500 tutoriale in limba romana.


descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyCum as putea sa fac reclama sus in dreapta bannerului

more_horiz
Salut,ma intrebam cum as putea sa-mi fac reclama in dreapta bannerului cum aveti si voi Multumesc

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
Bună dimineţa!

Acestă problemă s-a discutat de "n ori" . Dacă utilizaţi obţiunea de căutare, puteaţi găsii multe topicuri despre aceast subiect: [Trebuie sa fiti inscris si conectat pentru a vedea acest link]

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz

Cod:

//                        EDIT FROM HERE
///////////////////////////////////////////////////////////////////////////////////

/**
      Script settings
**/

var settings = {
 
  'force_size':        0,              //    if set to 1 all banners will be resized to the width and height in the next to settings
  'img_width':        468,        //  width to resize all banners to, only takes effect if above is 1
  'img_height':        60,          //    height to resize all banners to, only takes effect if above is 1
 
  'refresh_time':        5000,        //  the seconds between refreshs of the banners - use 0 to disable
  'refresh_max':        100,            //  maximum number of refreshs on each page load
 
  'duplicate_banners':  0,            //  keep as 0 to make sure the same banner won't show on the same page. will only take effect
                                //  if show_banners(); is used more than once. You must make sure you have enough banners to fill
                                //  all the slots else the browser may freeze or give a stack overflow error
 
  'location_prefix':      'adLocation-',  //  The prefix of the IDs of the <div> which wraps the banners - this div is generated dynamically.
                                //  a number will be added on the end of this string. adLocation- was used by default before version 1.4.x
                               
  'location_class':      'swb',        //  A class to add to all of the <div>s which wrap the banners, ideal to use for styling banners - use .swb img in your CSS 
 
  'window':            '_blank',      //  Window to open links in, _self = current, _blank = new. Use _top if in a frame!     
 
  'default_ad_loc':      'default'      //  The default adLocation. This is assigned to any banners not given an adLocation in the below banner list
                                //  There is no real reason to need to change this
}


/**
      Banners
**/
// banner list syntax: new banner(website_name, website_url, banner_url, show_until_date, adlocation),  DATE FORMAT: dd/mm/yyyy
// if you're not using adlocations just leave it empty like '' as in the last example here
// to make sure a banner is always rotating, just set the date far into the future, i.e. year 3000

var banners = [
        new banner('Nume',        'Link',          'Link Banner',      '31/12/2011',  ''),
        new banner('Nume',        'Link',          'Link Banner',      '31/12/2011',  ''),
        new banner('Nume',        'Link',          'Link Banner',    '31/12/2011',  '')
       
]

//                    There is no need to edit below here
///////////////////////////////////////////////////////////////////////////////////
var used=0;var location_counter=0;var refresh_counter=1;var map=new Array();function banner(a,b,c,d,e){this.name=a;this.url=b;this.image=c;this.date=d;this.active=1;this.oid=0;if(e!=''){this.loc=e}else{this.loc=settings.default_ad_loc}}function show_banners(a){location_counter=location_counter+1;if(a!=''&&a!=undefined){map[location_counter]=a}else{map[location_counter]=settings.default_ad_loc}var b='<div id="'+settings.location_prefix+location_counter+'" class="'+settings.location_class+'"></div>';document.write(b);display_banners(location_counter)}function display_banners(a){var b=new Array();if(a==''||!a||a<0){return}var c=banners.length;if((c==used)&&settings.duplicate_banners==0){return}for(i=0;i<(banners.length);i++){banners[i].oid=i;if((banners[i].loc==map[a])&&(banners[i].active==1)){b.push(banners[i])}}var d=Math.floor(Math.random()*b.length);var e=b[d];var f=(settings.force_size==1)?' width="'+settings.img_width+'" height="'+settings.img_height+'"':'';var g='<a href="'+e.url+'" title="'+e.name+'" target="'+settings.window+'"><img border="0" src="'+e.image+'"'+f+' alt="'+e.name+'" /></a>';var h=new Date();var j=e.date;j=j.split('/',3);var k=new Date();k.setFullYear(parseInt(j[2]),parseInt(j[1])-1,parseInt(j[0]));if((h<k)&&e.active==1){var l=document.getElementById(settings.location_prefix+a);if(l==null){alert('spyka Webmaster banner rotator\nError: adLocation doesn\'t exist!')}else{l.innerHTML=g;if(settings.duplicate_banners==0){banners[e.oid].active=0;used++}return}}else{display_banners(a)}return}function refresh_banners(){if((refresh_counter==settings.refresh_max)||settings.refresh_time<1){clearInterval(banner_refresh)}used=0;for(j=0;j<(banners.length);j++){banners[j].active=1}for(j=1;j<(location_counter+1);j++){display_banners(j)}refresh_counter++}var banner_refresh=window.setInterval(refresh_banners,settings.refresh_time);

CITESTE MAI MULT PE [Trebuie sa fiti inscris si conectat pentru a vedea acest link] http://www.extrem-tutorials.com/t2908-care-este-codul-de-la-reclama-aceea-de-langa-bannerphpbb3#ixzz1etY1yUZ4


Cod:

new banner('Nume',        'Link',          'Link Banner',    '31/12/2011',  '')


Cod:

<script language="javascript" src="Aici pui linkul.js"></script>
<script type="text/javascript">
      show_banners('');
  </script>


CITESTE MAI MULT PE [Trebuie sa fiti inscris si conectat pentru a vedea acest link] http://www.extrem-tutorials.com/t2908-care-este-codul-de-la-reclama-aceea-de-langa-bannerphpbb3#ixzz1etYDCPjk



Unde naiba le pun???

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
Am explicat în acea problemă, codul se încarcă pe un host şi se pune în :

Cod:

<script language="javascript" src="Aici pui linkul.js"></script>
    <script type="text/javascript">
          show_banners('');
      </script>

Acest cod se adaugă în meniul dvs.

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
Nu pricep ccum sa incarc pe un host?? dami un sait de host

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
[Trebuie sa fiti inscris si conectat pentru a vedea acest link]

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
offf dar nu ma pricep ....

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
Deci creezi un notepad adaugi codul acela javascript apoi il uploadezi aici yourjavascript.com si iei link-ul primit prin email de pe acel site si il adaugi acolo unde scrie

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
unde scrie ce?

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
Unde scrie Aici pui linkul.js

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
frate uite mie ce mi-o venit pe mail :

Cod:

You have posted your javascript file to yourjavascript.com on Wed, 31 Dec 1969 18:00:00 -0600.

Here is the link :

http://yourjavascript.com/171111120426/New Text Document.txt.js

and this is the code to put to your website :

<script type="text/javascript" src="http://yourjavascript.com/171111120426/New Text Document.txt.js"></script>


Thank you for using www.yourjavascript.com to host your javascript file.

if you need help, just email to admin@yourjavascript.com

====================================================================================
Free Javascript Hosting
yourjavascript.com

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
Of.
Faceti un nou document cu acel cod,punand extensia ".js" fara .txt
Apoi il urcati pe un host : [Trebuie sa fiti inscris si conectat pentru a vedea acest link]

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
unde sa pun ".js" ? in cod sau numele documentului?

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
cand salvezi fisieru pui numele nume.js

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz

Cod:

You have posted your javascript file to yourjavascript.com on Wed, 31 Dec 1969 18:00:00 -0600.

Here is the link :

http://yourjavascript.com/134100171821/js.txt.js

and this is the code to put to your website :

<script type="text/javascript" src="http://yourjavascript.com/134100171821/js.txt.js"></script>


Thank you for using www.yourjavascript.com to host your javascript file.

if you need help, just email to admin@yourjavascript.com

====================================================================================
Free Javascript Hosting
yourjavascript.com


uite acuma ce mi-a venit pe mail :|

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
Adauga acest cod:

Cod:

<script type="text/javascript" src="http://yourjavascript.com/134100171821/js.txt.js"></script>

in anunturi. Cum as putea sa fac reclama sus in dreapta bannerului 333276

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
asa si acuma ce fac?

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
Pai ati adaugat codul in Panoul de administrare => Afisare => Mesaje si emailuri => Anunturi. Activati anunturile, salvati, apoi creati un anunt, click pe plusul verde. Cum as putea sa fac reclama sus in dreapta bannerului 333276

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
am facut asta...acuma ce fac?

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
Buna ziua,

Adaugati acest cod intr-o pagina html:

Cod:

//                        EDIT FROM HERE
///////////////////////////////////////////////////////////////////////////////////

/**
      Script settings
**/

var settings = {
 
  'force_size':        0,              //    if set to 1 all banners will be resized to the width and height in the next to settings
  'img_width':        468,        //  width to resize all banners to, only takes effect if above is 1
  'img_height':        60,          //    height to resize all banners to, only takes effect if above is 1
 
  'refresh_time':        5000,        //  the seconds between refreshs of the banners - use 0 to disable
  'refresh_max':        100,            //  maximum number of refreshs on each page load
 
  'duplicate_banners':  0,            //  keep as 0 to make sure the same banner won't show on the same page. will only take effect
                                //  if show_banners(); is used more than once. You must make sure you have enough banners to fill
                                //  all the slots else the browser may freeze or give a stack overflow error
 
  'location_prefix':      'adLocation-',  //  The prefix of the IDs of the <div> which wraps the banners - this div is generated dynamically.
                                //  a number will be added on the end of this string. adLocation- was used by default before version 1.4.x
                               
  'location_class':      'swb',        //  A class to add to all of the <div>s which wrap the banners, ideal to use for styling banners - use .swb img in your CSS 
 
  'window':            '_blank',      //  Window to open links in, _self = current, _blank = new. Use _top if in a frame!     
 
  'default_ad_loc':      'default'      //  The default adLocation. This is assigned to any banners not given an adLocation in the below banner list
                                //  There is no real reason to need to change this
}


/**
      Banners
**/
// banner list syntax: new banner(website_name, website_url, banner_url, show_until_date, adlocation),  DATE FORMAT: dd/mm/yyyy
// if you're not using adlocations just leave it empty like '' as in the last example here
// to make sure a banner is always rotating, just set the date far into the future, i.e. year 3000

var banners = [
        new banner('Nume',        'Link',          'Link Banner',      '31/12/2019',  ''),
        new banner('Nume',        'Link',          'Link Banner',      '31/12/2019',  ''),
        new banner('Nume',        'Link',          'Link Banner',    '31/12/2019',  '')
       
]

//                    There is no need to edit below here
///////////////////////////////////////////////////////////////////////////////////
var used=0;var location_counter=0;var refresh_counter=1;var map=new Array();function banner(a,b,c,d,e){this.name=a;this.url=b;this.image=c;this.date=d;this.active=1;this.oid=0;if(e!=''){this.loc=e}else{this.loc=settings.default_ad_loc}}function show_banners(a){location_counter=location_counter+1;if(a!=''&&a!=undefined){map[location_counter]=a}else{map[location_counter]=settings.default_ad_loc}var b='<div id="'+settings.location_prefix+location_counter+'" class="'+settings.location_class+'"></div>';document.write(b);display_banners(location_counter)}function display_banners(a){var b=new Array();if(a==''||!a||a<0){return}var c=banners.length;if((c==used)&&settings.duplicate_banners==0){return}for(i=0;i<(banners.length);i++){banners[i].oid=i;if((banners[i].loc==map[a])&&(banners[i].active==1)){b.push(banners[i])}}var d=Math.floor(Math.random()*b.length);var e=b[d];var f=(settings.force_size==1)?' width="'+settings.img_width+'" height="'+settings.img_height+'"':'';var g='<a href="'+e.url+'" title="'+e.name+'" target="'+settings.window+'"><img border="0" src="'+e.image+'"'+f+' alt="'+e.name+'" /></a>';var h=new Date();var j=e.date;j=j.split('/',3);var k=new Date();k.setFullYear(parseInt(j[2]),parseInt(j[1])-1,parseInt(j[0]));if((h<k)&&e.active==1){var l=document.getElementById(settings.location_prefix+a);if(l==null){alert('spyka Webmaster banner rotator\nError: adLocation doesn\'t exist!')}else{l.innerHTML=g;if(settings.duplicate_banners==0){banners[e.oid].active=0;used++}return}}else{display_banners(a)}return}function refresh_banners(){if((refresh_counter==settings.refresh_max)||settings.refresh_time<1){clearInterval(banner_refresh)}used=0;for(j=0;j<(banners.length);j++){banners[j].active=1}for(j=1;j<(location_counter+1);j++){display_banners(j)}refresh_counter++}var banner_refresh=window.setInterval(refresh_banners,settings.refresh_time);


Din codul javascript adaugat, doar urmatorul cod il puteti modifica:

Cod:

        new banner('Nume',        'Link',          'Link Banner',      '31/12/2019',  ''),
        new banner('Nume',        'Link',          'Link Banner',      '31/12/2019',  ''),
        new banner('Nume',        'Link',          'Link Banner',    '31/12/2019',  '')

Unde este "Nume" treceti numele siteului pe care il promovati.
Unde este "Link" adresa siteului promovat.
Unde este "Link Banner" este adresa imagini.
Unde este "31/12/2019" este data pana cand bannerul va fi afisat.

Apasati pe butonul intregistrare si adaugati link-ul pagini in urmatoul cod:
Codul acesta il puteti introduce intr-un widget.

Cod:

<script language="javascript" src="LINK PAGINA HTML AICI"></script>
    <script type="text/javascript">
          show_banners('');
      </script>

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
asa da.....mai inteleg si eu

Multumesc Justin ... Rezolvat!!!

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
Topic rezolvat. Inchis!

descriptionCum as putea sa fac reclama sus in dreapta bannerului EmptyRe: Cum as putea sa fac reclama sus in dreapta bannerului

more_horiz
privacy_tip Permisiunile acestui forum:
Nu puteti raspunde la subiectele acestui forum