Quantcast
Channel: jQuery – Arabic HTML
Viewing all articles
Browse latest Browse all 9

How to add remove class on resize window اضافة كلاس لاحجام الشاشات

$
0
0

add remove class on resize window
عندما يكون التصميم متجاوب لاحجام الشاشات نواجة بعض المشاكل حسب كل تصميم و نريد الغاء او اضافة اسايل معين في وقت معين من هنا يمكننا حل هذة المشكلة باضافة او الغاء كلاس في حجم معين من الشاشة

jQuery

$(function () {

    $(window).bind("resize", function () {
        if ($(this).width() 

angularJS

app.directive('resizer', ['$window', function ($window) {
    return {
        restrict: 'A',
        link: function (scope, elem, attrs) {
            angular.element($window).on('resize', function () {
                $window.innerWidth 

The post How to add remove class on resize window اضافة كلاس لاحجام الشاشات appeared first on Arabic HTML.


Viewing all articles
Browse latest Browse all 9

Latest Images

Trending Articles





Latest Images