Line 7: | Line 7: | ||
function flowtext(){ | function flowtext(){ | ||
var text = document.getElementsById('text'); | var text = document.getElementsById('text'); | ||
− | $('text').toggleClass('visible'); | + | /*$('text').toggleClass('visible'); |
− | $('#text').toggleClass('visible'); | + | $('#text').toggleClass('visible');*/ |
+ | if (text.style.opacity == "0" ) { | ||
+ | text.style.opacity = "1"; | ||
+ | } else { | ||
+ | text.style.opacity = "0"; | ||
+ | } | ||
/*if (!text.style.display || text.style.display === 'none') text.style.display = 'block'; | /*if (!text.style.display || text.style.display === 'none') text.style.display = 'block'; | ||
else text.style.display = 'none';*/ | else text.style.display = 'none';*/ |
Revision as of 20:45, 28 October 2017