Posts

Showing posts with the label code for html

Jumping text for Website | Promotion your item with jumping text

<!-- Key to programming --> <html> <head> <style type="text/css"> ul.fallingtextrotator{ font-family: 'Orbitron', sans-serif; /* font style. Default uses Google fonts */ text-shadow: 2px 2px #C0F5A9, 3px 3px #C0F5A9, 4px 4px #C0F5A9, 5px 5px #C0F5A9, 6px 6px #C0F5A9; font-size: 48px; /* font size of text */ color: #217C23; letter-spacing: 10px; font-weight: 800; text-transform: uppercase; position: relative; list-style: none; margin: 0; padding: 0; } ul.fallingtextrotator > li{ position: absolute; opacity: 0; top: 0; left: 0; -moz-transition: all 0.3s ease-in; /* change 0.3s to reflect desired duration of effect on entire sentence (ie: fade in/out) */ -webkit-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; -ms-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } ul.fallingtextrotator > li:nth-of-type(even){ color: #713800; text-shadow: 2px 2px #FDE0A6, 3px 3px #FDE0A6, 4px 4px #FDE0...

Code for arrow in web page

Image
Instruction:  Copy these codes and paste in on you HTML part of the page....A arrow show for go upward.  Screen shot: 1 Screen shot: 2 Source code : <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/javascript" > /*********************************************** *www.key-to-programming.blogspot.com Don't remove and change these line for legal use Syed Ali Haider (CEO) Let's Programming ***********************************************/ var scrolltotop={     //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control     //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).     setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},     controlHTML: '...