vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   BB Code Enhancements - Blinking Text (https://vborg.vbsupport.ru/showthread.php?t=180546)

TheInsaneManiac 07-26-2008 05:03 AM

You are aware of the basic html function right? <blink>

SSJB_7 07-26-2008 10:20 PM

perfect i just tried and working perfectly.....

Thanks a lot

BucWiLd 07-30-2008 07:24 PM

works great thanks

G-man561 08-03-2008 05:24 PM

thanks jet

ndut 08-22-2008 04:28 PM

it works, in FF :) thanks

apiasto 08-22-2008 04:41 PM

it don't work on IE6 :sad:

FTAALPHA 08-24-2008 02:28 AM

nice work but it would nice if would work with IE.

Stoebi 09-09-2008 08:13 PM

Tested with IE, Opera, Firefox and Chrome.

Code:

Title: Blinking Text
Tag: blink
Example: [blink]Blinking Text Example[/blink]
Replacement:

       
HTML Code:

       
<blink>{param}</blink>

<script type="text/javascript">
<!--
// Before you reuse this script you may want to have your head examined
//
// Copyright 1999 InsideDHTML.com, LLC.

function doBlink()
{
    // Blink, Blink, Blink...
    var blink = document.all.tags("blink");

    for (var i=0; i < blink.length; i++)
    {
        blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : "";
    }
}

function startBlink()
{
    // Make sure it is IE4
    if (document.all)
    {
        setInterval("doBlink()", 650);
    }
    else
    {
        setInterval("doBlink()", 650);
    }
}

window.onload = startBlink;
//-->

</script>


Description: Blinking Text

Regards, Stoebi

steve1966 09-12-2008 11:40 AM

Quote:

Originally Posted by Stoebi (Post 1618522)
Tested with IE, Opera, Firefox and Chrome.

Code:

Title: Blinking Text
Tag: blink
Example: [blink]Blinking Text Example[/blink]
Replacement:

       
HTML Code:

       
<blink>{param}</blink>

<script type="text/javascript">
<!--
// Before you reuse this script you may want to have your head examined
//
// Copyright 1999 InsideDHTML.com, LLC.

function doBlink()
{
    // Blink, Blink, Blink...
    var blink = document.all.tags("blink");

    for (var i=0; i < blink.length; i++)
    {
        blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : "";
    }
}

function startBlink()
{
    // Make sure it is IE4
    if (document.all)
    {
        setInterval("doBlink()", 650);
    }
    else
    {
        setInterval("doBlink()", 650);
    }
}

window.onload = startBlink;
//-->

</script>


Description: Blinking Text

Regards, Stoebi

thank you

Hostboard 09-12-2008 12:31 PM

By using JavaScript this should be cross browser compatible. Note, I have not had time to test this so if someone can report back if it works...

Code:

<blink>{param}<blink>
<script type="text/javascript">
<!--
function doBlink() {
 var blink = document.all.tags("BLINK")
 for (var i=0; i<blink.length; i++)
  blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : ""
}
function startBlink() {
 if (document.all)
  setInterval("doBlink()",1000)
}
window.onload = startBlink;
// -->
</script>

Edit: Seems I was posting as someone else was and both found the same code but from different resources. Checked working on IE7. Does not work on WebTV.


All times are GMT. The time now is 09:56 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02227 seconds
  • Memory Usage 1,739KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (2)bbcode_html_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete