- Alcatel (6)
- Android (6)
- Blogger (10)
- Calculators (1)
- Facebook (1)
- Games (4)
- GitHub (1)
- Html-Css-Js (45)
- Illustrator (2)
- InfoSec (13)
- Photoshop (4)
- PHP (11)
- Unicode (2)
- Windows (2)
jQuery
elevateZoom (Requires jQuery)
Microsoft Store (Donation)
Facebook Messenger (Donation)
Many donors of this blog prefer to donate their money through Facebook Messenger!
Click here to go to this blog's Facebook Page!
Thank you!
Click here to go to this blog's Facebook Page!
Thank you!
Request Web\PHP\JavaScript\HTML Project !
Contact us if you want us to develop a Web\PHP\JavaScript\HTML project for you!
Advertise On This Blog!
If you want a Product\Service\Event to be advertised on this blog, feel free to contact us!
Ads (Reserved)
Sunday, October 1, 2017
Stretch to Screen Games while in Fullscreen Mode
When Windows Desktop uses the recommend or the highest resolution, most gpu control panels don't show the "Stretch to Screen" image scale option in order to prevent black areas on the screen edges while using applications, such games, in fullscreen mode with low resolutions!
- all you have to do is to change your Windows desktop resolution to a lower resolution
(When you do this, you will notice black areas on your screen edges! If not, lower the resolution even more!)
- Then go to the gpu control panel, and select "Stretch to Screen" in image scale option. (the black areas on your screen edges will go away!)
(if "Stretch to Screen" option is still not available, lower your desktop resolution even more and try again!)
- then change your desktop resolution back to it's recommended or highest resolution
(the gpu control panel may hide "Stretch to Screen" option again, but the option is already saved\enabled! - No need to worry!)
- After that, when you play a video game with low resolutions in fullscreen mode, you will notice no black areas on your screen edges!
Tested with Intel HD Graphics 3000 gpu, some Nvidea and ATI\AMD gpus!
Keywords:
Stretch to Screen Games while in Fullscreen Mode
Gpu Stretch to Screen Image Scale option missing
Graphic Control Panel Stretch to Screen Image Scale option missing
Intel HD Graphics 3000 how to stretch to screen image
Friday, May 26, 2017
jQuery - Load Text from Files into Elements
Load text from files into elements using <Object> tag, jQuery .get() or jQuery .ajax()!
jQuery .get() is easier to use, it is a shorthand to jQuery .ajax()!
- To "set" or "get" the values of form elements such as "input", "select" and "textarea", jQuery ".val()" is recommended over ".text()"!
- for example, in Internet Explorer 10, ".val()" prevents "Line Feed\carriage return" problems caused by ".text()" while setting text into a "textarea" element!
- File from GitHub! (Click Here)
Browsers\Websites\Servers may or not allow jQuery ".get()" or ".ajax()" to access files!
Due to browser security restrictions, most ".ajax()\.get()" requests are subject to the "same origin policy"!
The request can not successfully retrieve data from a different domain, subdomain, port, or protocol.
(Script and JSONP requests are not subject to the same origin policy restrictions. )
Keywords:
jQuery - Load Text from Files into Elements
jQuery .get() - Load Text from Files into Elements
jQuery .ajax() - Load Text from Files into Elements
Html <Object> tag - Load Text from Files into Elements
jQuery .get() is easier to use, it is a shorthand to jQuery .ajax()!
- To "set" or "get" the values of form elements such as "input", "select" and "textarea", jQuery ".val()" is recommended over ".text()"!
- for example, in Internet Explorer 10, ".val()" prevents "Line Feed\carriage return" problems caused by ".text()" while setting text into a "textarea" element!
- File from GitHub! (Click Here)
Browsers\Websites\Servers may or not allow jQuery ".get()" or ".ajax()" to access files!
Due to browser security restrictions, most ".ajax()\.get()" requests are subject to the "same origin policy"!
The request can not successfully retrieve data from a different domain, subdomain, port, or protocol.
(Script and JSONP requests are not subject to the same origin policy restrictions. )
Keywords:
jQuery - Load Text from Files into Elements
jQuery .get() - Load Text from Files into Elements
jQuery .ajax() - Load Text from Files into Elements
Html <Object> tag - Load Text from Files into Elements
Monday, May 22, 2017
Blogger - Image Zoom Plugin
First of all, I'm not the one who developed "elevateZoom" plugin! This is the original plugin website! This is the plugin modified version website (elevateZoom Plus)! (I use the modified version, elevateZoom Plus, since it seems to be more up to date!)
elevateZoom is a jQuery plugin, so, it requires jQuery library in order to work! (Tested with jQuery 1.7.0, 1.8.3 and 3.2.1)
Google Blogger and almost all websites nowadays use html 5 doctype declaration, which is, <!DOCTYPE html> ! Just in case, make sure your html code has a doctype declaration in order to allow jQuery to work properly! (<!DOCTYPE html> is the recommended one!)
Step 1 - Load jQuery library into your blog
(If you already use jQuery library in your blog, skip this step!)
Go to the blog layout and add a "HTML/JavaScript" Gadget! Copy and past there the following code:
- This Image shows how to create a Gadget!
- Visit this link to see how to hide any Gadget!
Step 2 - Load "elevateZoom Plus" plugin into your blog
(Note): "elevateZoom Plus" Gadget must be placed below "jQuery" Gadget! (See Image)
Go to the blog layout and add a "HTML/JavaScript" Gadget! Copy and past there the following code:
Note that, by default, the "Screen Mode" zoom effect is applied to all <img> elements in your blog! If you don't want such a behavior, remove the "Default Option" from the code or just choose another option to be used as default option!
You can modify the options to fit your needs, or, add your own custom option if you want! (There is an example in "Step 3" below!)
Mouse Wheel Scroll Zoom In/Out is enabled by default for all the options! (You can turn it off if you want!)
- This Image shows how to create a Gadget!
- Visit this link to see how to hide any Gadget!
Step 3 - How to and Examples
There are basically 2 ways to use this plugin:
Using a Small and Large Image (This is the recommended one):
<img id="elevateZoom Option" src="Small Image Url" data-zoom-image="Large Image Url" />
(Note that, the Small Image must be proportionally scaled down from the Large Image!)
Using only a Large Image (not recommended):
<img id="elevateZoom Option" src="Large Image Url" width="put a number smaller than the Large Image width" />
(Your page load time will increase if you are loading Larger Images)
(Note) Some Blogger Templates automatically add "padding" style to <img> tags, causing some Zoom effect position problems! To fix this problem, include style="padding:0px;" inside the <img> tags!
Default Screen Mode Zoom effect in use!
<img src="Small Image Url" data-zoom-image="Large Image Url" />
<img src="Small Image Url" data-zoom-image="Large Image Url" />
Default Screen Mode zoom effect Disabled!
<img id="ZoomImg_" src="Image Url" />
(If a <img> tag "id" attribute contains "ZoomImg_" string, "Default Screen Mode zoom effect" is automatically disabled for that <img> tag)
Disable "Default Screen Mode" and enable "Inside" (Inner) zoom effect!
<img id="ZoomImg_Inside" src="Small Image Url" data-zoom-image="Large Image Url" />
Disable "Default Screen Mode" and enable "Inside" (Inner) zoom effect!
<img id="ZoomImg_Inside" src="Small Image Url" data-zoom-image="Large Image Url" />
|
|
|
|
---|
Disable "Default Screen Mode" and enable "Window Right\Up\Down\Left" zoom effect!
<img id="ZoomImg_WindowRight" src="Small Image Url" data-zoom-image="Large Image Url" />
<img id="ZoomImg_WindowUp" src="Small Image Url" data-zoom-image="Large Image Url" />
<img id="ZoomImg_WindowDown" src="Small Image Url" data-zoom-image="Large Image Url" />
<img id="ZoomImg_WindowLeft" src="Small Image Url" data-zoom-image="Large Image Url" />
|
|
---|
Disable "Default Screen Mode" and enable "LensSquare\Round" zoom effect!
<img id="ZoomImg_LensSquare" src="Small Image Url" data-zoom-image="Large Image Url" />
<img id="ZoomImg_LensRound" src="Small Image Url" data-zoom-image="Large Image Url" />
<img id="ZoomImg_LensSquare" src="Small Image Url" data-zoom-image="Large Image Url" />
<img id="ZoomImg_LensRound" src="Small Image Url" data-zoom-image="Large Image Url" />
Disable "Default Screen Mode" and enable "Screen" zoom effect!
<img id="ZoomImg_Screen" src="Small Image Url" data-zoom-image="Large Image Url" />
<img id="ZoomImg_Screen" src="Small Image Url" data-zoom-image="Large Image Url" />
You can disable "Default Screen Mode" and enable your own custom option while editing a post!
(<img> tag must be placed above the <script> code)
If you want to create more advanced custom options, visit the modified elevateZoom Plus website, or, visit the original elevateZoom website which is basically almost the same thing!(<img> tag must be placed above the <script> code)
Some Extra Files from GitHub!
Keywords:
Blogger - Image Zoom Plugin
Blogger - elevateZoom Plugin
Blogger - elevateZoom Plus Plugin
Blogger - Image Zoom Magnifier
Blogger - Image Zoom Magnifying glass
Thursday, May 18, 2017
jQuery - Get Browser ViewPort Size in Real Time
Your ViewPort size is:
ViewPort size here
Resize window (Width\Height will be updated in Real Time!)
Html Code (from GitHub):
https://github.com/coder4589/jQuery/blob/master/get%20viewport%20size%20in%20Real%20Time%20-%201_%20from%20ViewPort%20(jQuery).html
Html Code (from GitHub):
https://github.com/coder4589/jQuery/blob/master/get%20viewport%20size%20in%20Real%20Time%20-%201_%20from%20ViewPort%20(jQuery).html
Keywords:
jQuery - Get Browser ViewPort Size in Real Time
Wednesday, May 3, 2017
GitHub - Render Html Files From Repositories
Github page links are case-sensitive (Example: "Test.html" is not the same as "test.html")
The link to render the "index.html" file is: UserNameHere.github.io/RepositoryNameHere/
The link to render others ".html" files is: UserNameHere.github.io/RepositoryNameHere/HtmlFileNameHere.html
The link to render an ".html" file inside a folder: UserNameHere.github.io/RepositoryNameHere/FolderPathHere/HtmlFileNameHere.html
More examples from GitHub: https://github.com/coder4589/GitHub-Pages
Keywords:
GitHub - Render Html Files From Repositories
Monday, April 24, 2017
JavaScript - Execute JS codes after DOM or Page load
In the most cases, some CSS/JavaScript/jQuery codes require only "DOM" to be completely loaded in order to work properly!
Document Object Model (DOM) load:
- When HTML document has been completely loaded and parsed
- Does not include stylesheets, images, and subframes loads!
Page load:
- When HTML document has been completely loaded and parsed
- Includes stylesheets, images, and subframes loads!
From all the alternatives demonstrated below, "JQuery" is the recommended one because it allows multiple onload calls!
DOM onload - with anonymous functions (jQuery)
DOM onload - with named functions (jQuery)
window onload - with anonymous functions (JavaScript)
window onload - with named functions (JavaScript)
body onload - with named functions (Html)
document onload - with anonymous functions (JavaScript)
document onload - with named functions (JavaScript)
Keywords:
JavaScript - Execute JS codes after DOM or Page load
Wednesday, April 19, 2017
CSS - Attribute and Negation Selectors
Negation selector: :not( )
If attribute contains a given string: *= (Attributes such as Id, Class, Style, etc)
*= CSS3 - chrome 4.0, Internet Explorer 7.0, Firefox 3.5, Safari 3.2, Opera 9.6
(For this selector to work in IE8 and earlier, a <!DOCTYPE> must be declared.)
:not( ) CSS3 - chrome 4.0, Internet Explorer 9.0, Firefox 3.5, Safari 3.2, Opera 9.6
Keywords:
CSS - Attribute and Negation Selectors
CSS - Select any Element in which its "Id", "Class" or any other attribute contains or does not contain a given string
Monday, April 17, 2017
Blogger - Customize Cross-Columns
How to:
from the code below, replace any "_Id" with your Gadget Id (Click here: How to find a Gadget Id)
Keywords:
Blogger - Customize Cross-Columns
Blogger - Customize Main Columns
Blogger - Pages and Labels as Tabs instead List
Sunday, April 16, 2017
Saturday, April 15, 2017
Friday, April 14, 2017
Blogger - Hide Gadgets Elements
- After creating a Gadget, click on the Gadget "Edit" link in order to see its "Id" in the browser url bar, at the end of the link!
- "Gadget_Id" is Case-Sensitive (Example: "HTML2" is not the same as "html2")
Hide a Gadget at All:
Hide Gadget Title and Gadget Content Area Top Border:
Titles from any Gadget (Image Gadget, Text Gadget, AdSense Gadget, etc etc etc) can be hidden through a single "Html\JavaScript" Gadget (Example below):
Keywords:
Blogger - Hide Gadgets Elements
Blogger - Hide Gadget Title
Friday, April 7, 2017
Illustrator - How to Vectorize
Convert Raster images to Vector images
How to:
Some examples below using "High Fidelity Photo" option to vectorize:
This is a 5888 x 4384 Image File (4,14 MB) Put the mouse over the image or Click it to better visualize it! |
Keywords:
Illustrator - How to Vectorize
Illustrator - convert raster images to vector images
Photoshop - Show Transparent ArtBoard
While creating new files (Alternative 1):
For existing files with non-transparent ArtBoard (Alternative 2):
Keywords:
Photoshop - Show Transparent ArtBoard
For existing files with non-transparent ArtBoard (Alternative 2):
Keywords:
Photoshop - Show Transparent ArtBoard
Tuesday, April 4, 2017
Blogger - Change Focused Elements Outline Color
First of all, note that "Outline" is not the same as "Border", they are different things!
An outline is a line that is drawn around elements (outside the borders) to make the element "stand out".
An outline is a line that is drawn around elements (outside the borders) to make the element "stand out".
How to:
Keywords:
Blogger - Apply CSS Style to any focused Element
Blogger - Change Focused Elements Outline Color
Blogger - Change Focused Elements Border Color
Monday, April 3, 2017
Blogger - Change Selected Text Color
How to:
Source: https://developer.mozilla.org/en-US/docs/Web/CSS/::selection#Summary
keywords:
Blogger - Change Selected Text Color
Blogger - Change highlighted Text Color
Wednesday, March 29, 2017
Tuesday, March 28, 2017
Resize or Crop Image (Canvas)
Crop Image \ Resize Canvas (Alternative 1):
Crop Image \ Resize Canvas (Alternative 2):
Resize Image \ Canvas:
Keywords:
Resize or Crop Image (Canvas)
Crop Image \ Resize Canvas (Alternative 2):
Resize Image \ Canvas:
Keywords:
Resize or Crop Image (Canvas)
Photoshop - Transparent Background
Save as ".png" file in order to preserve the "transparent" colors:
Keywords:
Photoshop - Transparent Background (Remove colors)
Facebook - Fix YouTube Videos Thumbnail
1 - Go to this link:
https://developers.facebook.com/tools/debug
2 - Then paste your YouTube video link inside the input field and click on "Debug" button
3 - Look for "When and how we last scraped the URL" and click on the "Scrap Again" button
4 - After that, if the correct video thumbnail is displayed, the problem is fixed!
Go to your Facebook page and share the youtube video again!
Keywords:
Facebook - Fix YouTube Videos Thumbnail
Monday, March 27, 2017
Thursday, March 23, 2017
Firefox - Find Blog Elements CSS Code
Element CSS code found below:
.contact-form-button-submit {
color: red;
background: white;
border-color: red;
}
from the code above, you can get the following ones:
/* Submit button style (on mouseover) */
.contact-form-button-submit:hover{
color: white;
background: red;
border-color: white;
}
/* Submit button style (while sending message) */
.contact-form-button-submit.disabled{
color: white;
background: red;
border-color: white;
}
then the codes can be applied in the blog Theme\Customize\Advanced\Add CSS
Tuesday, March 21, 2017
Blogger Contact Form - Change Send Button Color
Source: http://helplogger.blogspot.com/2013/05/new-blogger-widget-contact-form-change.html
keywords:
Blogger - change Contact Form colors
Blogger - customize Contact Form
Blogger Contact Form - Change Send Button Color
Blogger NavBar - Change Color
#navbar-iframe{background-color:green;}
Instead of "green", the following can be used:
red, green, pink, purple, yellow, etc
HTML color codes can be used too:
#000 or #000000 (for Black)
#56db2b (for green)
#e01308 (for red)
etc
Instead of "green", the following can be used:
red, green, pink, purple, yellow, etc
HTML color codes can be used too:
#000 or #000000 (for Black)
#56db2b (for green)
#e01308 (for red)
etc
Subscribe to:
Posts (Atom)