By Kelli B. Grant

- iStockphoto
If you sell it, will they come? Third-place carrier Sprint certainly hopes so. The Wall Street Journal reports that the carrier will join AT&T and Verizon in offering the much-anticipated iPhone 5 when it launches this fall.
The news is clearly a win for Sprint: analysts are already talking about the potential for bumper fourth-quarter sales. It’s a great opportunity for the carrier, which has lagged behind Verizon and AT&T, to grab back some of its former customers who left to get the iPhone elsewhere, says Todd Day, an industry analyst for Frost & Sullivan. “Ultimately, it gives them a level playing field,” he says. (Sprint declined to comment on reports that it is getting the iPhone.)
But will iPhone owners – current and future — benefit? Sprint customers will, if they want an iPhone without the hassle of switching carriers. For everyone else, the benefits are a little less certain.
From a price perspective, “it almost doesn’t matter which carrier you have,” says Alex Goldfayn, a consumer electronics expert who hosts the nationally syndicated radio show “The Technology Tailor Minute.” Apple sets strict pricing controls that will keep handset prices the same at all three, and competition will prompt the carriers into near-identical plan pricing to avoid waves of defecting customers.
Right now, owning an AT&T iPhone costs $84.99 per month — $5 less than Verizon’s monthly rate — for 450 minutes, 2GB of data and unlimited text messages. Sprint currently offers 450 minutes and unlimited data and messaging for $69.99, but that’s likely to change once the iPhone launches, Goldfayn says: iPhone users tend to use a lot of data (think streaming video via Netflix or Hulu), so it’s not in the interest of the carrier to keep data pricing low. Verizon phased out its unlimited data plan within months of introducing the iPhone. A Sprint spokesman says the carrier will continue offering its unlimited plans, but will “monitor our plans as they relate to the marketplace.”
Where you live could be the bigger iPhone factor.”Some carriers are better than others in specific metropolitan areas or regions,” Day says, “and everyone has an opinion.” Texas customers tend to be Sprint loyalists, for example, while the Northeast loves Verizon (and loves to hate AT&T). Testing call quality before you switch can be a tricky business, but it’s doable. Sites like BillShrink.com gauge signal strength for the various carriers in your zip code, and carriers also offer at least two weeks for a penalty-free cancellation of new service. Keep in mind, too, that an influx of iPhone users has slowed speeds — if your Sprint connection isn’t great now, there’s the chance that it could be even slower come the fall.
Update, 2:30pm: This story has been updated to include a comment from Sprint.
I believe everything composed made a ton of sense. But, what about this? what if you were to create a awesome headline? I ain’t suggesting your content isn’t good., however what if you added something that makes people want more? I mean Is the Sprint iPhone a Better Bet? – Pay Dirt is kinda vanilla. You ought to glance at Yahoo’s home page and see how they write article titles to get people interested. You might add a video or a pic or two to get readers interested about everything’ve written. Just my opinion, it might make your blog a little livelier.
By WebOsPublisher
I can’t take it anymore,I have looked everywhere fopr a good,functioning example of how to:
1. main image in cell
2. a rollOver button in another cell
3. rollOver button swaps out main image to image2
4. button onmouseOut swaps back to main image
5. 6 buttons in all swaping 6 diffferent images
Does anyone have any links for this concept. I have found one but it just does not work,perhaps because teh buttons themselves have rollOvers.
onMouseOver Image Swap
tutorials
forums
design
snippets
function getForumData()
var httpc = new XMLHttpRequest();
var url = “kirupa.com/ssi/newDesign/forum_info.php”;
httpc.open(“POST”, url, true);
httpc.setRequestHeader(“Content-Type”, “application/x-www-form-urlencoded”);
httpc.onreadystatechange = function() //Call a function when the state changes.
if(httpc.readyState == 4 && httpc.status == 200) // complete and no errors
showTemplate(httpc.responseText);
httpc.send();
getForumData();
var count = 0;
function showTemplate(response)
var loginText = document.getElementById(“logintext”);
if (response == “LOGIN”)
var loginHTML = document.getElementsByClassName(“displayLogInJoin”)[0];
var loginTextCopy = loginHTML.cloneNode(true);
loginText.appendChild(loginTextCopy)
else
if (count == 0)
var memberHTML = document.getElementsByClassName(“displayMemberInfo”)[0];
var memberName = document.getElementById(“memberName”);
var jsonData = JSON.parse(response);
memberName.childNodes[0].textContent = jsonData[0];
memberName.style.backgroundImage=”url(kirupa.com/forum/” + jsonData[3] +”)”;
var memberHTMLCopy = memberHTML.cloneNode(true);
loginText.appendChild(memberHTMLCopy)
count++;
LOG-IN or JOIN
kirupa
Forums Home
What’s New
Your Notifications
Member List
Search Forums
Edit Profile
Log Out
Register
Help
Remember Me?
Forum
Today’s Posts
Random Thread
FAQ
Calendar
Forum Actions
Mark Forums Read
Quick Links
View Forum Leaders
What’s New?
Advanced Search
Forum
Development
Web (HTML5, CSS, JavaScript)
onMouseOver Image Swap
Results 1 to 3 of 3
Thread: onMouseOver Image Swap
Thread Tools
Show Printable Version
Subscribe to this Thread…
Search Thread
Advanced Search
Display
Linear Mode
Switch to Hybrid Mode
Switch to Threaded Mode
April 26th, 2006, 11:34 PM
#1
dude9er
View Profile
View Forum Posts
Visit Homepage
444
posts
+)
444
–
onMouseOver Image Swap
I can’t take it anymore, I have looked everywhere fopr a good, functioning example of how to:
1. main image in cell
2. a rollOver button in another cell
3. rollOver button swaps out main image to image2
4. button onmouseOut swaps back to main image
5. 6 buttons in all swaping 6 diffferent images
Does anyone have any links for this concept. I have found one but it just does not work, perhaps because teh buttons themselves have rollOvers.
Thanks for any help!!
Reply With Quote
April 27th, 2006, 12:14 AM
#2
Ankou
View Profile
View Forum Posts
Visit Homepage
659
posts
Procrastinator
659
–
Depending on how large the images are you may want to preload them. Otherwise there will be a delay when you mouse over the button to the time it takes for the image to load.
This is old code I had laying around — but it works:
js.js file:
Code:
// Preload image – incase they are large images.
if(document.images)
var main = new Image(); main.src = "main.gif";
var img1 = new Image(); img1.src = "1.gif";
var img2 = new Image(); img2.src = "2.gif";
var img3 = new Image(); img3.src = "3.gif";
var img4 = new Image(); img4.src = "4.gif";
var img5 = new Image(); img5.src = "5.gif";
var img6 = new Image(); img6.src = "6.gif";
function change(imageName)
if(document.images) document['main'].src = eval(imageName + ".src");
function changeBack()
if(document.images) document['main'].src = main.src;
Sample html file:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>JS Image Swap Example</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="js.js"></script>
</head>
<body>
<img src="main.gif" name="main" border="0" alt="Image Info" />
<br /><br />
<a href="#" onmouseover="change(‘img1′)" onmouseout="changeBack()">Image 1</a>
<a href="#" onmouseover="change(‘img2′)" onmouseout="changeBack()">Image 2</a>
<a href="#" onmouseover="change(‘img3′)" onmouseout="changeBack()">Image 3</a>
<a href="#" onmouseover="change(‘img4′)" onmouseout="changeBack()">Image 4</a>
<a href="#" onmouseover="change(‘img5′)" onmouseout="changeBack()">Image 5</a>
<a href="#" onmouseover="change(‘img6′)" onmouseout="changeBack()">Image 6</a>
</body>
</html>
You should be able to toss the HTML and the javascript into files, put them in a folder along with some images (named main.gif, 1.gif, 2.gif … 6.gif) and then give it a try.
It’s just a sample on how to do this. If I needed to use something like this now, I’d probably recode it. Or at least check into browser support a bit since like I said it’s old JavaScript code.
Hope it helps…
Γνώθι Σεαυτόν
Reply With Quote
January 17th, 2012, 09:10 PM
#3
gregjmackay
n/a
posts
Guest
Fade out/in
Hi,
Is is possible to add a fade in/out as the images show/swap in this example??
Your help would be most appreciated…
Reply With Quote
«
Previous Thread
|
Next Thread
»
Similar Threads
drawing the outline of an image
By andy11983 in forum Flash IDE
Replies: 2
Last Post: March 21st, 2006, 07:59 AM
Anyone Know how to do this? warped panned image
By niki in forum Flash IDE
Replies: 5
Last Post: February 14th, 2006, 12:05 PM
Fireworks swap image problem
By hade in forum Web (HTML5, CSS, JavaScript)
Replies: 0
Last Post: November 28th, 2005, 05:35 AM
Swap Image Behavior HELP
By saraaimee in forum Web (HTML5, CSS, JavaScript)
Replies: 8
Last Post: December 18th, 2004, 12:53 AM
Timer image swap with alpha fade in/out
By .:®:. in forum ActionScript 2 (and Earlier)
Replies: 7
Last Post: July 29th, 2003, 06:55 AM
Bookmarks
Bookmarks
Digg
del.icio.us
StumbleUpon
Google
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
[VIDEO] code is On
HTML code is Off
Forum Rules
SUPPORTERS
( page flip book maker
)
NEW POSTS
Function…errr help please with get in Actionscript3
Last Post By snickelfritz (3 replies)
Yesterday, 10:46 PM in ActionScript 3
GroupSpecifier Class Of ActionScript 3
Last Post By BenBart (5 replies)
Yesterday, 07:39 PM in ActionScript 3
Is this you, TheCanadian?
Last Post By TheCanadian (1 replies)
Yesterday, 06:48 PM in Random
FLVplayback autoplay not working on slow connections
Last Post By leeto (0 replies)
Yesterday, 06:05 PM in ActionScript 2 (and Earlier)
Bouncing down the hill
Last Post By duchman (0 replies)
Yesterday, 04:20 PM in ActionScript 3
Everywhere sidebar 1.4.3.1
kirupa.com
Top
.bbcode_postedby
color: #333333;
img.thumbnail
border-radius: 5px;
border: 5px solid #000000;
img.thumbnail:hover
border-radius: 5px;
border: 5px solid #CCC;
.bbcode_quote .bbcode_postedby img
padding-right: 2px;
top: 3px;
.postbody img.inlineimg
top: 0px;
.bbcode_container div.bbcode_quote
background: none repeat scroll 0 0 #FFFFFF;
border: 0px;
border-left: 5px #CCC solid;
padding-left:10px;
margin: 0px;
color: #999;
.bbcode_container .bbcode_quote_container
background: none;
.bbcode_container
margin: 0px;
margin-bottom: 10px;
margin-top: 10px;
.postbitlegacy .postrow, .eventbit .eventrow, .postbitdeleted .postrow, .postbitignored .postrow
font: 14px “Segoe UI”,Arial,Tahoma,Calibri,Geneva,sans-serif;
.postbitlegacy .userinfo
background: none;
.postbitlegacy .postdetails, .eventbit .eventdetails
background-color: #F8F8F8;
.postbitlegacy .postbody, .eventbit .eventdetails .eventbody
background-color: #FFFFFF;
#adTable
float: left;
margin: 15px;
.tfoot .fx-banner
margin: 0 auto;
width: 800px;
.tfoot .fx-banner a
display: block;
width: 110px;
float: left;
.tfoot .fx-banner a img
display: block;
margin: 0 auto;
border: none;
text-decoration: none;
.tfoot .fx-banner a .text
display: block;
width: auto;
color: #800000;
font-size: 11px;
text-decoration: underline;
text-align: center;
.cke_skin_kama .cke_wrapper
background-color: #E1E1E2;
background-image:none;
border-radius: 0px;
span.cke_skin_kama
border-color: #A0A0A0;
padding: 0px;
.textbox, textarea, select
border-radius: 0px;
span.cke_skin_kama
border-radius: 0px;
#pagetitle .description
font-size: 11px;
line-height: 36px;
.forumbit_post .foruminfo .forumicon
margin-top: 5px;
.forumbit_post .foruminfo .forumdata .viewing
font-size: 12px;
font-style: normal;
margin-right: 10px;
margin-top: 7px;
.forumbit_post .foruminfo .forumdata .forumtitle a, .forumbit_nopost .forumbit_nopost .forumrow .forumtitle a
font-family: ‘Archivo Narrow’,sans-serif;
font-size: 20px;
font-weight: bold;
.forumbit_post .forumstats li, .forumbit_post .forumstats_2 li
color: #333333;
display: block;
font-size: 13px;
padding-right: 20px;
text-align: right;
.forumstats li:first-child
display: none;
div p.lastposttitle img
display: none;
.forumbit_post .forumdescription
clear: both;
display: block;
padding-right: 10px;
font-family: ‘Carrois Gothic’,sans-serif;
font-size: 14px;
color: #999999;
.forumbit_post .forumrow .forumlastpost
font-size: 13px;
.forumbit_post .forumlastpost .lastpostdate
font-size: 10px;
color: #999999;
display: none;
div p.lastpostdate span.time
color: #999999;
display: none;
div p.lastposttitle a.threadtitle
border-bottom: 1px #999 dotted;
font-weight: bold;
.threadbit .threadmeta
font-size: 11px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: #999999;
.threadbit .title
font-size: 16px;
padding: 3px;
color: #000;
.threadbit .threadtitle_unread
padding: 3px;
font-weight: bold;
color: #02284F;
.threadbit .threadtitle_unread:hover
text-decoration: none;
.threadbit .title:hover
text-decoration: none;
background-color: #E8E8E8;
ol#stickies.stickies h3.threadtitle a:hover
background-color: #FFC2AE;
ol#stickies.stickies dl.threadlastpost a
color: #333;
font-weight: bold;
ol#stickies.stickies div.author
color: #333;
ol#stickies.stickies div.author a
color: #333;
ol#stickies.stickies div.author a:hover
background-color: #FFC2AE;
.threadbit .nonsticky, .threadbit .deleted, .threadbit .discussionrow, .threadbit .ignored
background-color: #F7F7F7;
ol#threads.threads div.author
margin-left: 43px;
h3.threadtitle a.threadtitle_unread
div.threadmeta div.author a.username
color: #666666;
border-bottom: 1px #666 dotted;
li.new div.nonsticky
background-color: #E1F4FF;
li.new div.nonsticky ul.threadstats
background-color: #d0edff;
color: #00588C;
li.new div.nonsticky .threadtitle_unread:hover
background-color: #BFE8FF;
div.threadmeta div.author a.username:hover
background-color: #F0F0F0;
text-decoration: none;
.threadbit .threadstats li
font-size: 18px;
font-weight: bold;
text-align: center;
margin-right: 0px;
padding-top: 4px;
ul.threadstats
height: 34px;
div.threaddetailicons
display: none;
.threadbit .nonsticky, .threadbit .deleted, .threadbit .discussionrow, .threadbit .ignored
border-style: dotted;
.threadbit, .threadlisthead
box-shadow: none;
.forumbit_post .forumrow, .forumbit_nopost .forumhead, .forumbit_nopost .forumrow, .forumbit_post .forumhead, .forumbits .forumhead
box-shadow: none;
padding-bottom: 5px;
padding-top: 5px;
.forumhead
background-color: #E9E9E9;
border-color: #C7C7C7;
#forums .L1 .forumhead a
color: #333333;
font-family: ‘Carrois Gothic’,sans-serif;
font-size: 18px;
font-weight: bold;
text-transform: lowercase;
.forumbit_nopost .forumhead .forumtitle, .forumbit_nopost .forumhead span, .forumbit_nopost .forumhead .collapse, .forumbit_post .forumhead h2 span
color: #333333;
font-family: ‘Carrois Gothic’,sans-serif;
font-size: 18px;
font-weight: bold;
text-transform: lowercase;
.forumbit_nopost .forumhead a.collapse img
margin-top: 6px;
#sidebar_container
Banner Rotator
Flash Carousel
Image Scroller
Dock Menu
Flash Accordion
Cover Flow
Video Player
Home
About kirupa.com
Meet the Moderators
Advertise
Link
to Us
Credits
Copyright 1999 – 2012
All times are GMT -4. The time now is 04:09 AM.
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.
I hardly leave a reopsnse, however i did some searching and wound up here Apple’s Japanese Site Let’s the Cat out of the bag. iPhone 4S launching Oct 14th. | GeekAhead.Com. And I actually do have 2 questions for you if it’s allright. Could it be just me or does it look like some of the remarks look as if they are coming from brain dead folks? And, if you are posting on other places, I would like to follow anything fresh you have to post. Would you list of every one of your shared sites like your Facebook page, twitter feed, or linkedin profile?
New iphone applications has made available Kindle reader.
It saves on paper usage and trees. There are many apps. to download for the kindle device. Check out this site for more info. HTTP://KINDLE-READER-GADGET.BLOGSPOT.COM/ thank you for the visit.
Boost moble sprint shrinkage plan never shrinks..the plan keeps going up..go figure ?