Created
May 5, 2020 09:34
-
-
Save softiconic/7d01289983ce02385da24179ebbad4bb to your computer and use it in GitHub Desktop.
Only text Slider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1 id="changingtext">We Are <span>Digital </span>Marketing.</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
var text = [ 'We Are <span>Social Media.</span>','We Are<span> Web</span> Design.','We Are <span>Mobile</span> Development.','We Are<span> Joker</span> Media.','We Are <span> Digital </span>Marketing.']; | |
var counter = 0; | |
var elem =document.getElementById('changingtext'); | |
var f = setInterval(change, 3000); | |
function change() { | |
elem.innerHTML = text[counter]; | |
counter++; | |
if (counter >= text.length) { | |
counter = 0; | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment