$("#идентификатор вашей карусели").slick('slickNext'); //следующий слайд
$("#идентификатор вашей карусели").slick('slickPrev'); //предыдущий слайд
$("левый край карусели").hover(function(){
$("#идентификатор вашей карусели").slick('slickPrev')
})
$(".класс кнопки").click(function(){
$(".класс меню").toggleClass("visible");
})
.класс меню{
overflow:hidden;
width:0;
transition:all 0.2s ease;
}
.класс меню.visible{
width:700px; //например
}
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.fillText($("#textInput").val(), 20, 20);
<?php
include 'ttf-info-class.php';
$fontinfo = getFontInfo('путь/до/шрифта.ttf');
echo '<pre>';
print_r($fontinfo);
echo '</pre>';
?>
Array
(
[1] => Almonte Snow
[2] => Regular
[3] => RayLarabie: Almonte Snow: 2000
[4] => Almonte Snow
[5] => Version 2.000 2004
[6] => AlmonteSnow
[8] => Ray Larabie
[9] => Ray Larabie
[10] => Larabie Fonts is able to offer unique free fonts through the generous support of visitors to the site. Making fonts is my full-time job and every donation, in any amount, enables me to continue running the site and creating new fonts. If you would like to support Larabie Fonts visit www.larabiefonts.com for details.
[11] => http://www.larabiefonts.com
[12] => http://www.typodermic.com
)
<img src="/images/img.jpg">
<input type="text">
$("img").click(function(){
$("input").val($(this).attr("src")); //появился в инпуте /images/img.jpg
});
Даниил Шарко @scronheim
Чет не работает
var width;
jQuery("tr td:last-child").click(function(){
width = jQuery("#myTbl").width();
jQuery("#myDiv").append("<div style='width:"+width+"px'></div>");
})
var offset = 0;
$(document).ready(function(){
$('a.test').click(function(){
$.ajax({
url: "test.php",
method: "GET",
cache: false,
data:"offset=" + offset,
success:function(data){
console.log(data);
$("body").append(data);
}
})
offset++;
console.log(offset);
});
});
var offset = 10;
$(document).ready(function(){
$('a.test').click(function(){
$.ajax({
url: "test.php",
method: "GET",
cache: false,
data:"offset=" + offset,
success:function(data){
console.log(data);
$("body").append(data);
}
})
offset = offset + 10;
console.log(offset);
});
});
<?php
$wall = file_get_contents("http://api.vk.com/method/wall.get?v=5.52&filter=others&domain=****&count=10&offset=".$_GET["offset"]);
$wall = json_decode($wall);
$wall = $wall->response->items;
for ($i = 0; $i < count($wall); $i++) {
$user = file_get_contents("http://api.vk.com/method/users.get?v=5.52&user_ids=".$wall[$i]->from_id."&fields=photo_100");
$user = json_decode($user);
$user = $user->response;
echo "<img src='".$user[0]->photo_100."' />".$user[0]->first_name." ".$user[0]->last_name;
echo "<p><b>".($i + 1)."</b>. <i>".$wall[$i]->text."</i><br /><span>".date("Y-m-d H:i:s", $wall[$i]->date)."</span></p>";
?>