Blog
Marquee Text Without Marquee Tag Using Javascript
This is one of the trick use the Flash messages or marquee text without html marquee tag using javascript. In Some Situation we can’t able to use html tag in our websites. in that particular situation you can use the this script.
Marquee Text Without Marquee Tag
<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title>Scroll Text</title>
<style type=”text/css”>
.scroll{
width:430px;
height:21px;
overflow:hidden;
position:relative;
}
.scrollingtext{
white-space:nowrap;
position:absolute;
}
</style>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title>Scroll Text</title>
<style type=”text/css”>
.scroll{
width:430px;
height:21px;
overflow:hidden;
position:relative;
}
.scrollingtext{
white-space:nowrap;
position:absolute;
}
</style>
<script type=”text/javascript” src=”https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js”></script>
<script type=”text/javascript”>
$(document).ready(function() {
$(‘.scrollingtext’).bind(‘marquee’, function() {
var ob = $(this);
var tw = ob.width();
var ww = ob.parent().width();
ob.css({ right: -tw });
ob.animate({ right: ww }, 20000, ‘linear’, function() {
ob.trigger(‘marquee’);
});
}).trigger(‘marquee’);
});
</script>
</head>
<body>
<div class=”scroll”>
<div class=”scrollingtext”> Flash message without marquee tag using javascript! </div>
</div>
</body>
</html>
Related Posts
Background Animation Using Javascript
Today we are going to see different type of animation background. This concept working javascript.Background Animation working fu...
Horizontal Scrolling Image Using Javascript
We would like to share this concept for horizontal scrolling image using html and css, javascript. This concept used gallery images,pro...
Animated Image Slider Using Javascript
We are go to see how to create animated image slider using javascript. This type animated image slider using on your website for ...
Animated Feedback Form Using Javascript
Hey, like to share this concept for animated feedback form creation. This method using html,css and javascript. Very easy to use ...
Floating Social Media Button Icons
Hi all, Today share to how to create social media floating social media button icon. This type button icon very easy to use. ...
How to Create Ecommerce website Add to Cart Button
Today, going to see how to create ecommerce website add to cart. Ecommerce website one of the important add to cart. Now we...
Double Slider Signin/Signup Form Using Javascript
Today share to interesting concept double slider signin and signup page using html and css,javascript.See the coding easy to unde...
Responsive Sidebar Menu
Today we are going to see how to create responsive sidebar menu. This method easy to understand and very useful to you. Lets go to see ...
Expandable Search Bar
Expandable search bar different searching method using your website. click to the search icon show expandable search space. ...
Css3 Image Slider
This topic going to see how to create image slider using javascript. This method using image slider. we are know ...
3D social media icon using css3
Hi, today very interesting concept for animated 3d social media icon using css3. Easy to use this code for your website. How...
How to create 3D carousel slider image in html and css
Now, today see this interesting concept 3D slider images using html and css code. 3D carousel sliderimageis a modern image gallery that...