::: در حال بارگیری لطفا صبر کنید :::Loading , please wait ...

انجمن کدستانMoisrex

MoisrexMoisrex.rozblog.com
زمان جاریtime : پنجشنبه 14 تیر 1403 - 5:55 قبل از ظهر
نام کاربریusername : پسوردpassword : یاor عضویتregister | رمز عبور را فراموش کردمForgot your password?
شما در سایت ما ثبت نام نکرده اید و یا وارد اکانت کاربری خود نشده اید. از شما خواهشمند هستیم You are not log in to site. Please وارد شویدlogin یاor ثبت نام کنیدregister .
تغییر رنگ و سایز کد متحرک تایپی
تعداد بازدیدvisits : 901
hani2200 آفلاین



ارسال هاAnswers : 5
عضویتRegistration date : 18 /4 /1394
تغییر رنگ و سایز کد متحرک تایپی

سلام دوستان

چطوری میتونم رنگ و سایز این کد رو تغییر بدم؟؟رنگ قرمز باشه سایز هم 18pt باشه

کد:
<div id="tickerAnchor" dir="rtl" align="right"></div><script language="JavaScript" type="text/javascript">

<!--

// Ticker startup

function startTicker()

{

// Define run time values

theCurrentStory = -1;

theCurrentLength = 0;

// Locate base objects

if (document.getElementById) {

theAnchorObject = document.getElementById("tickerAnchor");

runTheTicker();

}

else {

document.write("<style>.ticki{display:none;}.ticko{border:0px; padding:0px;}</style>");

return true;

}

}

// Ticker main run loop

function runTheTicker()

{

var myTimeout;

// Go for the next story data block

if(theCurrentLength == 0)

{

theCurrentStory++;

theCurrentStory = theCurrentStory % theItemCount;

theStorySummary = theSummaries[theCurrentStory].replace(/"/g,'"');

theTargetLink = theSiteLinks[theCurrentStory];

theAnchorObject.href = theTargetLink;

thePrefix = "<span class=\"tickls\">" + theLeadString + "</span>";

}

// Stuff the current ticker text into the anchor

theAnchorObject.innerHTML = thePrefix +

theStorySummary.substring(0,theCurrentLength) + whatWidget();

// Modify the length for the substring and define the timer

if(theCurrentLength != theStorySummary.length)

{

theCurrentLength++;

myTimeout = theCharacterTimeout;

}

else

{

theCurrentLength = 0;

myTimeout = theStoryTimeout;

}

// Call up the next cycle of the ticker

setTimeout("runTheTicker()", myTimeout);

}

// Widget generator

function whatWidget()

{

if(theCurrentLength == theStorySummary.length)

{

return theWidgetNone;

}

if((theCurrentLength % 2) == 1)

{

return theWidgetOne;

}

else

{

return theWidgetTwo;

}

}

// -->

</script>

<script language="JavaScript" type="text/javascript">

<!--

var theCharacterTimeout = 50;

var theStoryTimeout = 5000;

var theWidgetOne = "_";

var theWidgetTwo = "-";

var theWidgetNone = "";

var theLeadString = "";

var theSummaries = new Array();

var theSiteLinks = new Array();

var theItemCount = 6;

theSummaries[0] = "به سایت ما خوش آمدید.";

theSiteLinks[0] = "";

theSummaries[1] = "طراحی کد های خود را به ما بسپارید.";

theSiteLinks[1] = "http://moisrex.r98.ir";

theSummaries[2] = "هر جور کدی خواستین این جا هست.";

theSiteLinks[2] = "http://moisrex.r98.ir";

theSummaries[3] = "ترفند های جالب و چیز هایی که تا به حال حتی بهش فکر هم نکرده اید.";

theSiteLinks[3] = "http://moisrex.r98.ir";

theSummaries[4] = "آموزش کدنویسی و نوشتن کد را با ما تجربه کنید.";

theSiteLinks[4] = "http://moisrex.r98.ir";

theSummaries[5] = "و از همه مهم تر آزمایش کد های HTML به صورت آنی و آنلاین و البته با نسخه آفلاین";

theSiteLinks[5] = "http://moisrex.r98.ir";

startTicker();

//-->

</script>

پنجشنبه 07 آبان 1394 - 23:36
ارسال پیامsend p.m. نقل قولReply سپاس گزارمThanks گزارشReport
rjrmaku آفلاین



ارسال‌هاAsnwers : 752
عضویتRegistration date : 4 /12 /1391
حمایت کردهthanks : 203
حمایت شدهThanked : 183
پاسخAnswer 1 : تغییر رنگ و سایز کد متحرک تایپی

اینو اضافه کن به اول یا آخر کد

کد:

<style>

#tickerAnchor {

color: #ff0000;//رنگ

font-size: 18px;//سایز متن

}

</style>

کد کامل

کد:

<style>

#tickerAnchor {

color: #ff0000;//رنگ

font-size: 18px;//سایز متن

}

</style>

<div id="tickerAnchor" dir="rtl" align="right"></div><script language="JavaScript" type="text/javascript">

<!--

// Ticker startup

function startTicker()

{

// Define run time values

theCurrentStory = -1;

theCurrentLength = 0;

// Locate base objects

if (document.getElementById) {

theAnchorObject = document.getElementById("tickerAnchor");

runTheTicker();

}

else {

document.write("<style>.ticki{display:none;}.ticko{border:0px; padding:0px;}</style>");

return true;

}

}

// Ticker main run loop

function runTheTicker()

{

var myTimeout;

// Go for the next story data block

if(theCurrentLength == 0)

{

theCurrentStory++;

theCurrentStory = theCurrentStory % theItemCount;

theStorySummary = theSummaries[theCurrentStory].replace(/"/g,'"');

theTargetLink = theSiteLinks[theCurrentStory];

theAnchorObject.href = theTargetLink;

thePrefix = "<span class=\"tickls\">" + theLeadString + "</span>";

}

// Stuff the current ticker text into the anchor

theAnchorObject.innerHTML = thePrefix +

theStorySummary.substring(0,theCurrentLength) + whatWidget();

// Modify the length for the substring and define the timer

if(theCurrentLength != theStorySummary.length)

{

theCurrentLength++;

myTimeout = theCharacterTimeout;

}

else

{

theCurrentLength = 0;

myTimeout = theStoryTimeout;

}

// Call up the next cycle of the ticker

setTimeout("runTheTicker()", myTimeout);

}

// Widget generator

function whatWidget()

{

if(theCurrentLength == theStorySummary.length)

{

return theWidgetNone;

}

if((theCurrentLength % 2) == 1)

{

return theWidgetOne;

}

else

{

return theWidgetTwo;

}

}

// -->

</script>

<script language="JavaScript" type="text/javascript">

<!--

var theCharacterTimeout = 50;

var theStoryTimeout = 5000;

var theWidgetOne = "_";

var theWidgetTwo = "-";

var theWidgetNone = "";

var theLeadString = "";

var theSummaries = new Array();

var theSiteLinks = new Array();

var theItemCount = 6;

theSummaries[0] = "به سایت ما خوش آمدید.";

theSiteLinks[0] = "";

theSummaries[1] = "طراحی کد های خود را به ما بسپارید.";

theSiteLinks[1] = "http://moisrex.r98.ir";

theSummaries[2] = "هر جور کدی خواستین این جا هست.";

theSiteLinks[2] = "http://moisrex.r98.ir";

theSummaries[3] = "ترفند های جالب و چیز هایی که تا به حال حتی بهش فکر هم نکرده اید.";

theSiteLinks[3] = "http://moisrex.r98.ir";

theSummaries[4] = "آموزش کدنویسی و نوشتن کد را با ما تجربه کنید.";

theSiteLinks[4] = "http://moisrex.r98.ir";

theSummaries[5] = "و از همه مهم تر آزمایش کد های HTML به صورت آنی و آنلاین و البته با نسخه آفلاین";

theSiteLinks[5] = "http://moisrex.r98.ir";

startTicker();

//-->

</script>







جمعه 08 آبان 1394 - 00:18
وب کاربرUser's blog ارسال پیامSend p.m. نقل قولReply سپاس گزارمThanks گزارشReport



moisrex
درباره ماAbout us لینک های ماOur links کلمات کلیدیKeywords
انجمن تخصصی کدستان ، ساخته شده توسط فردی با نام مستعار Moisrex می باشد.This forum designed by a person who called Moisrex.

ایمیلE-mail : Moisrex @ Gmail.com
کدستان,انجمن کدستان,کدنویسی,انجمن پشتیبانی,فروم,رزبلاگ,آموزش کدنویسی,درخواست کد
تمامی حقوق این انجمن مربوط به همین انجمن می باشد | طراحی قالبCopyright (c) By Moisrex , All rights reserved | Desiger : Moisrex