' + businessHourM2FText + '
?
Saturday
' + '' + businessHourSATText + '
' + '?
Sunday
' + '' + businessHourSUNText + '
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_PICKUP_HOUR").show(); WALMART.$("#ROLLOVER_PICKUP_HOUR").html( pickupHourInfo); WALMART.$('#ROLLOVER').wmBubble('position',{top:(y-114),left:x}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } else { pickupHourInfo = 'Please call for store hours.
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_PICKUP_HOUR").show(); WALMART.$("#ROLLOVER_PICKUP_HOUR").html(pickupHourInfo); WALMART.$('#ROLLOVER').wmBubble('position',{top:(y-38),left:x}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } } function generateBusinessHourText(businessHour) { if (businessHour) { openTime = businessHour.openTime; closeTime = businessHour.closeTime; if ((openTime == '-1:-1 am' || openTime == '00:00 am') && closeTime == '00:00 am') { return 'Closed'; } else if (openTime == '00:00 am' && (closeTime == '11:59 pm' || closeTime == '-1:-1 am')) { return 'Open 24 hours'; } else { return openTime + ' ? ' + closeTime; } } } /* * This method added for VIBS project which used to show online price tooltip. */ function showOnlinePriceOverlayRollover(e) { var onliePriceTipContent = 'In-store prices vary from online prices - please visit your store for exact pricing. Online prices are not honored in our stores.' isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$('#ROLLOVER_OTHER_TEXT').show(); WALMART.$('#ROLLOVER_OTHER_TEXT').html(onliePriceTipContent); e = (e) ? e : ((event) ? event : "") WALMART.$('#ROLLOVER').wmBubble('position',{top:getY(e) - 25,left:getX(e)}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } var isRolloverShown = false; var rolloverIndex = 0; function showPreferredStoreRollover(e, ind) { var slapStoresData = WALMART.bot.stores; var spulStoresData = WALMART.spul.stores; var storesData = (typeof slapStoresData !== 'undefined' && slapStoresData && slapStoresData != '' && slapStoresData.stores != '') ? slapStoresData : spulStoresData; if (storesData != null && storesData.stores != null && storesData.stores != '' && (!isRolloverShown || rolloverIndex != ind)) { rolloverIndex = ind; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); e = (e) ? e : ((window.event) ? window.event : "") var el = e.target; var storeIndex = ind - 1; resetRollover(); if(storesData.stores[storeIndex]!= undefined && storesData.stores[storeIndex].address != undefined ){ WALMART.$('#ROLLOVER_CITY').show(); WALMART.$('#ROLLOVER_ADDR1').show(); WALMART.$('#ROLLOVER_ADDR2').show(); WALMART.$('#ROLLOVER_CITY').html( storesData.stores[storeIndex].address.city); WALMART.$('#ROLLOVER_ADDR1').html(storesData.stores[storeIndex].address.fullStreet); WALMART.$('#ROLLOVER_ADDR2').html(storesData.stores[storeIndex].address.city + ", " + storesData.stores[storeIndex].address.stateCode + " " + storesData.stores[storeIndex].address.zipCode); WALMART.$('#ROLLOVER').wmBubble('position',{top:findPosY(el) - 66,left:findPosX(el)}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } } } function showSelectedStoreRollover(e, city, fullstreet, zip, state) { // if (store!=null ){ //rolloverIndex=ind; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); e = (e) ? e : ((window.event) ? window.event : "") resetRollover(); WALMART.$('#ROLLOVER_CITY').show(); WALMART.$('#ROLLOVER_ADDR1').show(); WALMART.$('#ROLLOVER_ADDR2').show(); WALMART.$('#ROLLOVER_CITY').html(city);//store.address.city; WALMART.$('#ROLLOVER_ADDR1').html(fullstreet);//store.address.fullStreet; WALMART.$('#ROLLOVER_ADDR2').html(city + ", " + state + " " + zip); WALMART.$('#ROLLOVER').wmBubble('position', {top: getY(e),left: getX(e)}); WALMART.$('#ROLLOVER').wmBubble('update', WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } function showSOIRollover(e, desc) { showRollover(e, desc); } function hideRollover(e) { WALMART.$('#ROLLOVER').wmBubble('hide'); isRolloverShown = false; clearTimeout(hideTimer); } function resetRollover() { WALMART.$("#ROLLOVER_CITY").hide(); WALMART.$("#ROLLOVER_ADDR1").hide(); WALMART.$("#ROLLOVER_ADDR2").hide(); WALMART.$("#ROLLOVER_OTHER_TEXT").hide(); WALMART.$("#ROLLOVER_CLOSE").hide(); WALMART.$("#ROLLOVER_PICKUP_HOUR").hide(); } var hideTimer; function setHideTimer(elapseVal) { clearTimeout(hideTimer); hideTimer = setTimeout("hideRollover()", elapseVal); } var isOpera = (navigator.userAgent.indexOf('Opera') != -1); var isIE = (!isOpera && navigator.userAgent.indexOf('MSIE') != -1) function getX(e) { var posx; if (e.pageX) { posx = e.pageX; } else if (e.clientX) { posx = e.clientX; if (isIE) { posx += top.document.documentElement.scrollLeft + top.document.body.scrollLeft; } } return posx; } function getY(e, offset) { var defaultOffset = 66; var posy; if (e.pageY) { posy = e.pageY; } else if (e.clientY) { posy = e.clientY; if (isIE) { posy += top.document.documentElement.scrollTop + top.document.body.scrollTop; } } if (offset == undefined) { posy -= defaultOffset; } else { posy -= offset } return posy; } /*START S2S small format Changes */ function showExpressContentRollover(x, y) { expressStoreInfo = 'Our newest addition,
' +'Walmart Express, delivers
' +'Every Day Low Prices in a
' +'small store that is easy to shop.
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_OTHER_TEXT").show(); WALMART.$("#ROLLOVER_OTHER_TEXT").html(expressStoreInfo); WALMART.$('#ROLLOVER').wmBubble('position', {top:(y-85),left:x}); WALMART.$('#ROLLOVER').wmBubble('update', WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); }/*END S2S small format Changes */We're Sorry, This Item is Out of Stock.
Loading...
Loading...
Loading...
ADD A MEMORY CARD TO YOUR CAMERA. SEE MORE GREAT VALUES.- Recently Viewed Items
- Clear this list
- Recently Viewed Items
- You don't have any recently viewed items
- Top Searched Items in Digital Cameras
- ?Store pickup - Select option(s) above to see your pickup
choices.
- ?Free shipping to store Find
Getting the products you need is even easier with our free pickup options. Just give us your ZIP code, select a preferred store, and we\'ll be able to tell you what items are available to pick up today or can be shipped to your local store ? free.
- ?Free shipping to store and FedEx Office? locations
- Order now and this item will be ready for pickup within 5-10 business days
- We'll send you an email/text message when it's ready
- We'll hold your order for 14 days. If you don't make it to the store by the deadline, we'll cancel the order and refund your method of payment
- Please call your store for exact pickup hours
- Order now and this item will be ready for pickup within 5-10 business days
- We'll send you an email/text message when it's ready
- FedEx Office will hold your order for 5 days. If you don't make it to the store by the deadline, we'll cancel the order and refund your method of payment.
- Please call the FedEx Office location for exact pickup hours
- ?Free shipping to store with Site to Store
- Order now and this item will be ready for pickup within 4 hours (Orders after 6pm ready for store pickup tomorrow)
- We'll send you an email/text message when it's ready
- We'll hold your order for 7 days. If you don't make it to the store by the deadline, we'll cancel the order and refund your method of payment
- Please call your store for exact pickup hours
- ?
-
?Electronic delivery via email after purchase
??
This home free?item counts towards free shipping on a qualifying $45 orderShop for items labeled home free. When you spend $45 on Home Free items, you'll get free shipping on those items.
?Ship to home
??-?$45 order of Home Free items??-?97? shipping
??-?Free Shipping
- Electronic delivery via email after purchase
?Ship to home is not available for this product.
- Store information not available.
Online
Not Available at this time
In stock for:
Out of stock online Email me when in stock
Coming Soon
Preorder Now
Preorders Sold Out
Please check back on or after .
Please enter a valid 5-digit ZIP Code.
Please select your options before adding to cart
Please select your options before adding to cart
Please select your options before adding to cart
* This item is being discontinued. Availability is limited.
Out of stock for shipping to home.
Please enter a valid 5-digit ZIP Code.
- Store information not available.
Please visit your local store to see if this item is in stock.
Show this number 0002724280871?to a Walmart associate to find this item in your store.
Product availability, styles, promotions and prices may vary between stores and online. Product availability, styles, promotions and prices may vary between stores and online.
Shoot life at its fullest with the Sony DSC-H70/B Black 16.1MP Digital Camera w/ 10x Optical Zoom. Capture landscapes with one touch Sweep Panorama mode, take 720p HD videos, get perfect portraits with Smile Shutter technology or get everyone in the picture with the 25mm wide angle lens. Note: Memory card not included. Purchase of a memory card is highly recommended.
Sony DSC-H70/B 16.1MP Digital Camera:
- 16.1 megapixel resolution
Delivers excellent picture quality - Sony G Lens 27-270mm zoom lens
Offers f/3.5 to f/8.0 aperture and features a 10x optical zoom - 3.0" LCD display
Enjoy easy focus selection and photo viewing - AVI movie file format
Record movies in HD format on this compact camera - 11 scene modes
Always snap the most eye-catching photos in accurate color - Includes 100 free prints, battery (NP-BG1), battery charger (BC-CSGD), multi connector cable, wrist strap and CD-ROM
Memory Card Specifications:
- Compatible with MS Duo and SD/SDHC/SDXC memory cards
- Limited/No internal memory mdash; memory card is required to operate
- 1 MS Duo and SD/SDHC/SDXC Slot
Main Features | |
Optical Zoom: | 10 X |
Features | |
Resolution: | 16.1 Megapixel |
Light Sensitivity: | ISO 100, ISO 800, ISO 400, ISO 200, ISO 80, ISO 1600, ISO 3200, ISO auto |
Shooting Modes: | Frame movie mode |
Max Shutter Speed: | 1/1600 sec |
Min Shutter Speed: | 30 sec |
Exposure Metering: | Multi-segment, center-weighted, spot |
Exposure Modes: | Program, automatic |
White Balance: | Custom, automatic, presets |
White Balance Presets: | Incandescent, cloudy, flash, daylight, fluorescent light (cool white), fluorescent light (daylight), fluorescent light (warm white) |
Still Image Format: | JPEG |
Video Capture: | H.264 - 1280 x 720 - 30 fps - 9Mbps ? H.264 - 1280 x 720 - 30 fps - 6Mbps ? H.264 - 640 x 480 - 30 fps - 3Mbps |
Continuous Shooting Speed: | 1 frame per second |
Digital Zoom: | 2 x |
Lens System | |
Optical Zoom: | 10 x |
Type: | Zoom lens - 4.25 mm - 42.5 mm - f/3.5-5.5 |
Focal Length Equivalent to 35mm Camera: | 25 - 250mm |
Macro Focus Range: | 2 in |
Lens Aperture: | F/3.5-5.5 |
Display | |
Type: | LCD display - 3" - color |
Memory / Storage | |
Supported Flash Memory: | Memory Stick Duo, SD Memory Card, Memory Stick PRO Duo, SDXC Memory Card, Memory Stick PRO Duo Mark2, SDHC Memory Card, Memory Stick PRO-HG Duo |
Camera Flash | |
Flash Modes: | Fill-in mode, slow synchro, auto mode, flash OFF mode, red-eye reduction |
Effective Flash Range: | 10 in - 12 ft |
Features: | AF illuminator |
Additional Features | |
Self Timer Delay: | 10 sec, 2 sec |
Additional Features: | Audio recording, USB 2.0 compatibility, built-in speaker, RGB primary color filter, auto power save, DPOF support, digital image rotation, PRINT Image Matching, camera orientation detection, histogram display, cropping an image, Smile Detection Auto Shutter, Self Portrait Auto Shutter, 720p HD movie recording, Sweep Panorama technology, in-camera red-eye fix, TransferJet support, Dynamic Range Optimizer, face detection, built-in help guide, dual image stabilization, Exif Print support, Blink Detection technology, Motion Detection Technology, Smile Detection technology, automatic display brightness adjustment, Clear RAW Noise Reduction, Intelligent AUTO (iAUTO) |
Battery | |
Supported Battery Details: | 1 x Li-ion rechargeable battery - 960 mAh ( included ) |
Connections | |
Connector Type: | 1 x Hi-Speed USB ? 1 x composite video/audio output ? 1 x HDMI output |
Miscellaneous | |
Cables Included: | USB cable ? A/V cable |
Included Accessories: | Wrist strap |
Software | |
Software: | Drivers & Utilities, Sony Picture Motion Browser |
Dimensions | |
Width: | 4 in |
Height: | 2.3 in |
Depth: | 1.1 in |
Weight: | 5.8 oz |
More Information | |
Model No.: | DSC-H70/L |
Shipping Weight (in pounds): | 1.0 |
Product in Inches (L x W x H): | 8.0?x?6.0?x?3.0 |
Walmart No.: | 000606461 |
Sony DSC-H70/B 16.1MP Digital Camera w/ 10x Optical Zoom Lens, 3.0" LCD Display, 100 Free Prints, (Assorted Colors) 6 6
This camera takes great clear pictures, easy to use, a great value for the money, It has a lot of great components that higher priced cameras have [ A Great Value] . Recomend this camera to anyone who enjoys picture taking . 12/02/2011
wonderful camera This camera really lives up to my expectations, It is a G series Sony just like the H55 before. However I purchased mine at an actual Walmart store for $129 today on black friday. 11/25/2011
great product for a great price! 12/22/2011
Incredible! This camera has everything I wanted and more. The 10x optical zoom and panaromic pictures definately make it a great value for the price. 08/31/2011
1-4 of 6 total reviews
Walmart Product Care PlansA limited product warranty is included free for most items. With an optional Walmart Care Plan you can extend coverage up to 3 additional years. Walmart Care Plan Extended Warranties cover 100% of the cost for repair or replacement, including shipping charges for the exchange. See Details
We'll show you extended warranty options and pricing at checkout if applicable.
If you made your purchase in a Walmart store and would like to purchase a warranty Click HereGift options are not available for this item.
Enjoy Great Financing!
Make the most of your shopping experience with the Walmart Discover? or Walmart Credit Card.
Enjoy 6 months special financing on every purchase, every day
*Offer subject to credit approval
Learn More or Apply Now
No Payments + No Interest if Paid in Full in 6 Months!
Plus, New Bill Me Later? Customers:Get $20 off $100!
Enjoy no payments for 6 months. You'll have 6 months with no payments, and no interest if paid in full within 6 months on orders over $250. Otherwise, interest will be charged from the original date of purchase. Bill Me Later is the quick, easy, secure way to buy online without using your credit card. Simply select Bill Me Later at checkout. Subject to credit approval.
See Terms
Don't Miss a Single Rollback or Special Offer!
Subscribe to our RSS feeds to see the latest news and updated right in your RSS reader or RSS-enabled browser.nw62
/catalog/product.do, /catalog/fusionItem.do
/include/dynamic/tiles/templates/item/fusionItem.jsp
Source: http://www.walmart.com/ip/Sony-16.2-MP-DSC-H70-L/15833724?sourceid=1500000000000006735100
chris harris peter schiff matt holliday project runway winner project runway winner hunter s thompson hunter s thompson
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.