Soluții

Cum sa creezi un checkbox in Python

Elementele de interfata vizuala ale oricarei aplicatii Windows sunt butoanele, listele, checkbox-urile etc. In romana, checkbox a fost redat prin caseta de selectare.

  • O casetă de selectare permite utilizatorilor să selecteze mai multe opțiuni dintr-un număr de opțiuni diferite.
  • Ele arata ca niște patratele la selectarea carora în casetă apare o bifă.
  • O astfel de caseta de selectare poate fi creată in limbajul Python utilizând widget-ul tkinter checkbutton.
[mai mult...]

How to Change Drive Letter in Windows 10?

Even though Windows automatically assigns a drive letter to any external storage device you connect to it, there are unique occasions where it tries to give an already-assigned letter to a new drive. That’s just one credible reason you might see a need to change a drive letter; the rest is up to you, but more important is for you to know how to do it.

[mai mult...]

jQuery Effects – Animation

With jQuery, you can create custom animations.

jQuery Animations – The animate() Method

The jQuery animate() method is used to create custom animations.

Syntax:

$(selector).animate({params},speed,callback);

The required params parameter defines the CSS properties to be animated.

The optional speed parameter specifies the duration of the effect. It can take the following values: “slow”, “fast”, or milliseconds.

The optional callback parameter is a function to be executed after the animation completes.

The following example demonstrates a simple use of the animate() method; it moves a <div> element to the right, until it has reached a left property of 250px:

[mai mult...]