Tampilkan postingan dengan label Responsive Designs. Tampilkan semua postingan
Tampilkan postingan dengan label Responsive Designs. Tampilkan semua postingan

Minggu, 23 Maret 2014

How to Make Embed YouTube Video Responsive

How to Make Embed YouTube Video Responsive, now you're reading How to Make Embed YouTube Video Responsive and Thanks for visiting my Driver download blog, for download this manual please click the button and choose what you want, blog about Windows Driver, Laptop drivers, Notebook driver, USB Driver, Phone driver and much more.

Using Embedded Video Responsive is simple. You will first need to find what you are embedding video. You need the simply copy of the URL of embedding video.In this article, We will show you how to make YouTube videos responsive in your site, using simple CSS.

YouTube Embed Code

Paste the Embed Code into your web page.

Change Embed Code

Add div around the Embed code.

CSS

Paste the CSS Code in your Stylesheet
Your embed YouTube videos will be fully responsive.

Free Download Top 5 Responsive Jquery Image Gallery/Sliders

Free Download Top 5 Responsive Jquery Image Gallery/Sliders, now you're reading Free Download Top 5 Responsive Jquery Image Gallery/Sliders and Thanks for visiting my Driver download blog, for download this manual please click the button and choose what you want, blog about Windows Driver, Laptop drivers, Notebook driver, USB Driver, Phone driver and much more.

Responsive Design is the popular trend at the moment. The basic concept behind responsive design is to adapt the site to different resolutions. If you are interested in adding a jQuery image gallery on your website then here you will find the right Gallery/Sliders for your website. In this article, we have 5 image gallery /Sliders with responsive design support.

1. FlexSlider

FlexSlider is a responsive image gallery slider that comes with responsive design support. It supports Jquery api and  touch options.



Camera slider is an open source based slider with responsive features and more transition.


UnoSlider is a fully Jquery responsive image slider with touch.


Galleria is a responsive Javascript image slider and media queries with full screen option.


Download Galleria Slider

5. Elastislide

Elastislide slider is a responsive image carousel that will adapt fluidly in a responsive layout. It is a jQuery slider with horizontally or vertically option with a pre-defined number of shown images.


Minggu, 16 Februari 2014

How to Create Responsive Google Map For Your Website or Blog

How to Create Responsive Google Map For Your Website or Blog, now you're reading How to Create Responsive Google Map For Your Website or Blog and Thanks for visiting my Driver download blog, for download this manual please click the button and choose what you want, blog about Windows Driver, Laptop drivers, Notebook driver, USB Driver, Phone driver and much more.

If you want to create Responsive Google Map, then you have two options, first with CSS and the second is JavaScript.  Today, a lot of designers and developers are struggling to Embed Google maps in responsive designs.

First basic steps with CSS for creating a responsive Google Map.

Responsive Google Map CSS

.googlemap-container {
    position: relative;
    padding-bottom: 26.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.googlemap-container iframe,
.googlemap-container object,
.googlemap-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

Responsive Google Map HTML Markup

<div class="googlemap-container ">
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.ch/maps?f=q&amp;source=s_q&amp;hl=de&amp;geocode=+&amp;q=jaipur+Rajasthan&amp;ie=UTF8&amp;hq=&amp;hnear=Jaipur,+Rajasthan,+Indien&amp;ll=26.912416,75.787288&amp;spn=0.375941,0.441513&amp;t=m&amp;z=11&amp;output=embed"></iframe>
</div>

Responsive Google Map with JavaScript
Use the following Javascript code before end the head tag into your website html file.

<script type="text/javascript">
function initialize() {
   var mapOptions = {
           zoom: 9,
           center: new google.maps.LatLng(28.9285745, 77.09149350000007),
           mapTypeId: google.maps.MapTypeId.TERRAIN
       };
   var map = new google.maps.Map(document.getElementById('responsive-google-map'),
                                   mapOptions);
                            
   var marker = new google.maps.Marker({
                   map: map,
                   draggable: false,
                   position: new google.maps.LatLng(28.9285745, 77.09149350000007)
       });
}
google.maps.event.addDomListener(window, 'resize', initialize);
google.maps.event.addDomListener(window, 'load', initialize);
</script>

HTML markup

<div id='responsive-google-map' style='width:100%;height:300px;'></div>

It is working fine on your phone or tablet.

Jumat, 14 Februari 2014

How to Check Your Responsive Website Offline and Localhost Server

How to Check Your Responsive Website Offline and Localhost Server, now you're reading How to Check Your Responsive Website Offline and Localhost Server and Thanks for visiting my Driver download blog, for download this manual please click the button and choose what you want, blog about Windows Driver, Laptop drivers, Notebook driver, USB Driver, Phone driver and much more.

Today, Responsive Web Design is the most popular and Client demand web Technology. Clients are increasingly using their mobile to visit your site. A responsive design changes its appearance and layout based
 at the size of the screen resolution the website is displayed on. Responsive websites can be designed to make the text on the page larger and easier to read on smaller resolution screens.

We are known that the many Tools are available on the online who check your responsive website correctly. These tools are checked your design and view online, how to display your site on Smartphone, Tablet, Laptop and Desktops. You are working Offline on our site, then no options are available to check your responsive designs.

Don't worry ! We are providing a simple method to check your responsive design offline.

How to check responsive designs offline?
You can check your responsive designs only on Mozilla Firefox browser.

Just follow below steps and check responsive designs.

#1  Open your website on your localhost Server (http://localhost/website_address)

#2  Press Ctrl+Shift+M keyboard shortcut

 

#3  Select your device size

#4  Click on X button for back to full width site

If you are facing any trouble with this method, then comment us.