how to move a text in c# language?
eg.....flower...
i want to move it from left to right or viceversa
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Govinda Rajulu YemineniPosted Jul 23, 2015, 3:37 AM
Upendra Pratap ShahiPosted Jul 23, 2015, 3:13 AM
DOCTYPE html>
<html>
<body>
<p>A function is triggered when the user is pressing a key in the input field.p>
<marquee id="test" behavior="scroll" direction="up" height="200"
scrolldelay="100" scrollamount="2">
This is test text for marquee
<input type="button" id="btntest" value="Button" />
marquee>
<script type="text/javascript">
setTimeout(function () { document.all.test.stop(); }, 3000);
script>
body>
html>
Manas MohapatraPosted Jul 23, 2015, 2:05 AM