Having trouble using the AsciiEffect.js and CSS3DRenderer.js together, wondering if it's possible without tweaking... here's the concept
var W = window.innerWidth, H = window.innerHeight;
renderer = new THREE.CSS3DRenderer();
effect = new THREE.AsciiEffect( renderer );
effect.setSize( W, H );
document.body.appendChild( effect.domElement );
Encountering issues with this setup... my understanding is that AsciiEffect script requires canvas renderer... not sure about CSS3DRenderer functionality... but in theory, should be doable, right? Likely involves some adjustments to either or both...