Plugin media redimensionnement image png > jpg

Html->Image $this->Html->Image('Nom img', 'puis les paramètre de tinthumb'); Mais je pense qu'il est possible de modifier directement l'helper media ce qui serai plus simple

1
Gif qui ne joue plus quand on revient sur la page

html : ``` Commencer var button = document.getElementsByTagName('button')[0]; button.addEventListener("click", function () { window.location.assign("formulaire.html") }); ``` Le css : ``` html { background-image: url("fond_3.gif"); background-size: cover; } button { transition-property: opacity; transition-duration: 1s; width: 280px; height: 121px; font-size: 40px; } #boutoon { position: absolute; left

0
Afficher les donnés d'une table sql sous forme de tableau

html css un site de pronostics de paris sportif ,du coté html css tout est ok ,mais je bloque complétement niveaux php/sql ,j'ai créer une table avec comme atributs

8
Mise à jour scope Angular JS

html pour le formulaire : ``` {{titre}} Choix 1 2 3 4 {{choixLiane}} ``` Mon html pour afficher la liste : ``` Liste des combinaisons Lianes Crocodiles Ponts Escaliers {{u.choixLiane}} {{u.choixCroco}} {{u.choixPont}} {{u.choixEscalier}} ``` Les "console.log

1
CSS ignorer un élément pour la mise en forme

html A 1 2 ``` ```css ul { /* un genre de ignore */ } ``` comme cela ```html A 1 2 ``` tout en restant valide Auriez-vous le nom de cette propriété sous la main

4
Mettre du php dans javascript

Html [code] function addRow(tableID) { var table = document.getElementById(tableID); var rowCount = table.rows.length; var row = table.insertRow(rowCount); var cell1 = row.insertCell(0); var element1 = document.createElement("input"); element1.type = "checkbox"; cell1.appendChild(element1); var cell2 = row.insertCell(1); cell2.innerHTML = rowCount + 1; var cell3 = row.insertCell(2); var element2 = document.createElement("input"); element2.type = "text"; cell3.appendChild(element2); } function deleteRow(tableID) { try { var table = document.getElementById(tableID); var rowCount = table.rows.length; for(var i=0; i

1
Plugin Media CakePHP et tinyMCE 4.x

html = createHtmlElement($this); var editor = ''; var win = (!window.frameElement && window.dialogArguments) || opener || parent || top; win.send_to_(html, window, ""); return false; }); ``` Si vous avez

5
Lien apparent selon le role de l'utilisateur loggué

Html->link("Se déconnecter",'/users/logout'); ?> pour faire apparaître les liens selon si l'utilisateur

3
Problème avec append()

HTML et CSS. Je bloque sur un petit problème en effet j'ajoute grâce à append() du contenu HTML sauf qu'après je ne peux plus le manipuler avec Jquery

3
class active & foreach

Html->link('Articles',array('controller'=>'posts','action'=>'index'),array('class'=>$controller=='posts'?'active':null)); ?>

10