Something that's always fascinated me is those adverts that flash up a concept, or product, and your mind makes you go out and buy it.
I have looked around for the legality of subliminal advertising, and found very little information on the subject, barring some very badly written information from dubious sources.
Here is s snippet to make one in Actinic. Make a new fragment on a page (doesn't matter where), with a blank template. Use this as its template, then select an image, using the fragments image selector. When the page loads, the image will flash up for 0.3 of a second, after 5 seconds of waiting.
I'd like to run an experiment, where some of us run images of a product, that we don't sell, on a prominent page.
Do these adverts really work? Opinions?
I have looked around for the legality of subliminal advertising, and found very little information on the subject, barring some very badly written information from dubious sources.
Here is s snippet to make one in Actinic. Make a new fragment on a page (doesn't matter where), with a blank template. Use this as its template, then select an image, using the fragments image selector. When the page loads, the image will flash up for 0.3 of a second, after 5 seconds of waiting.
HTML Code:
<img id="tylerblip" style="display:none; position:absolute; top:50px; left:50px;" src="<actinic:variable name="FragmentImageFileName" />"></a> <script> var tylerimg = document.getElementById('tylerblip'); setTimeout('tylerimg.style.display = \'block\'', 5000); setTimeout('tylerimg.style.display = \'none\'', 5030); </script>
Do these adverts really work? Opinions?
Comment