(function($) {
$.fn.totop = function(options) {
options = $.extend(
{
height : 300, // позиция появления
speed : 1000 // скорость прокрутки наверх
}, options);
return this.each(function() {
button = $(this);
$(window).scroll( function() {
if ( $(window).scrollTop() > options.height ) {
if (!button.attr('data-x')) {
button.fadeIn();
}
} else {
if (!button.attr('data-x')) {
button.fadeOut();
}
}
});
button.click(function(e) {
if ($(this).attr('data-x')) {
var top = parseInt($(this).attr('data-x'));
e.preventDefault();
$('html, body').stop().animate({scrollTop: top}, options.speed, function(){
button.removeAttr('data-x');
});
button.html('<i class="icon-arrow-up"></i>');
return false;
}
var top = $(window).scrollTop();
button.attr('data-x',top);
button.html('<i class="icon-arrow-down"></i>');
e.preventDefault();
$('html, body').stop().animate({scrollTop: "0px"}, options.speed );
return false;
});
$(window).scroll();
})
}
})(jQuery);
$(window).resize(function() {
console.log("resize");
$('.main-product .product-frame').each(function() {
var $this = $(this);
var height = $this.find('.product-section h3').height();
if (height > 21) {
if (!$this.find('.variations_form').length) {
var width = $(window).width();
console.log("simple");
if (width >= 992 && width < 1200) {
console.log("simple price");
}
if (width >= 768 && width <= 991) {
console.log("simple price");
}
}
}
});
});
.menu li {
background: #1881C6;
display: inline;
}
.menu a {
display: block;
padding: 2%;
position: relative;
}
.menu a:after {
background: #FFFFFF;
content: " ";
display: block;
height: 10px;
position: absolute;
right: 0px;
top: 50%;
transform: translate(0, -50%);
width: 1px;
}
.menu li:last-child a:after {
display:none;
}
<?php
// Вывод информационной системы
$Informationsystem_Controller_Show = new Informationsystem_Controller_Show(
Core_Entity::factory('Informationsystem', '15')
);
$Informationsystem_Controller_Show
->informationsystemItems()
->queryBuilder()
->clearOrderBy();
$Informationsystem_Controller_Show
->xsl(
Core_Entity::factory('Xsl')->getByName('СписокНовостейСправаСайт27')
)
->groupsMode('all')
->group(FALSE)
->limit(2)
->show();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Автосервис</title>
</head>
<body>
<?php
mysql_connect("localhost", "root", "") or die (mysql_error ());
mysql_select_db("mydatabase") or die(mysql_error());
if (isset($_POST['submit'])) {
print_r($_POST);
}
?>
</body>
</html>